@akanjs/devkit 0.0.37 → 0.0.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +15 -15
package/index.js CHANGED
@@ -1017,7 +1017,7 @@ CMD ["npm", "start"]`,
1017
1017
  const contentStr = typeof content === "string" ? content : JSON.stringify(content, null, 2);
1018
1018
  if (import_fs7.default.existsSync(writePath)) {
1019
1019
  const currentContent = import_fs7.default.readFileSync(writePath, "utf8");
1020
- if (currentContent === contentStr || currentContent.length === contentStr.length)
1020
+ if (currentContent === contentStr)
1021
1021
  this.logger.verbose(`File ${writePath} is unchanged`);
1022
1022
  else {
1023
1023
  import_fs7.default.writeFileSync(writePath, contentStr, "utf8");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "0.0.37",
3
+ "version": "0.0.39",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,22 +15,22 @@
15
15
  "node": ">=22"
16
16
  },
17
17
  "dependencies": {
18
- "@inquirer/prompts": "^^7.2.1",
19
- "@langchain/core": "^^0.3.27",
20
- "@langchain/openai": "^^0.3.16",
21
- "@next/bundle-analyzer": "^^15.1.3",
18
+ "@inquirer/prompts": "^7.2.1",
19
+ "@langchain/core": "^0.3.27",
20
+ "@langchain/openai": "^0.3.16",
21
+ "@next/bundle-analyzer": "^15.1.3",
22
22
  "@nx/devkit": "^20.7.2",
23
- "@trapezedev/project": "^^7.1.3",
24
- "axios": "^^1.7.9",
25
- "commander": "^^13.1.0",
26
- "dayjs": "^^1.11.13",
27
- "form-data": "^^4.0.1",
28
- "js-yaml": "^^4.1.0",
23
+ "@trapezedev/project": "^7.1.3",
24
+ "axios": "^1.7.9",
25
+ "commander": "^13.1.0",
26
+ "dayjs": "^1.11.13",
27
+ "form-data": "^4.0.1",
28
+ "js-yaml": "^4.1.0",
29
29
  "next-pwa": "^5.6.0",
30
- "ora": "^^3.4.0",
31
- "pluralize": "^^8.0.0",
32
- "reflect-metadata": "^^0.2.2",
33
- "tunnel-ssh": "^^5.2.0",
30
+ "ora": "^3.4.0",
31
+ "pluralize": "^8.0.0",
32
+ "reflect-metadata": "^0.2.2",
33
+ "tunnel-ssh": "^5.2.0",
34
34
  "typescript": "^5.8.3"
35
35
  }
36
36
  }