We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4847b59 commit 43c2b18Copy full SHA for 43c2b18
2 files changed
package.json
@@ -142,7 +142,8 @@
142
"version": "oclif readme && git add README.md",
143
"start:dev": "./bin/dev.js",
144
"start:vm": "npm run build && npm run pack:macos && npm run start:vm",
145
- "deploy": "npm run pkg && npm run notarize && npm run upload"
+ "deploy": "npm run pkg && npm run notarize && npm run upload",
146
+ "prepublishOnly": "npm run build"
147
},
148
"version": "1.0.0",
149
"bugs": "https://github.com/codifycli/codify/issues",
src/config.ts
@@ -1,4 +1,4 @@
1
-export const VERSION = (await import("../package.json", { assert: { type: "json" } })).default.version;
+export const VERSION = (await import("../package.json", { with: { type: "json" } })).default.version;
2
3
export const config = {
4
loginServerPort: 51_039,
0 commit comments