We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cea736 commit bff6f1bCopy full SHA for bff6f1b
package.json
@@ -54,7 +54,7 @@
54
"test-unit": "vitest run",
55
"coverage": "vitest run --coverage",
56
"release": "esno ./scripts/release.mts",
57
- "pnpm:devPreinstall": "esno ./scripts/devPreinstall.mts",
+ "pnpm:devPreinstall": "node ./scripts/devPreinstall.js",
58
"preinstall": "node -e \"if (process.env.INIT_CWD === process.cwd()) { process.exit(1) }\" || npx only-allow pnpm",
59
"postinstall": "node -e \"if (process.env.INIT_CWD === process.cwd()) { process.exit(1) }\" || npx simple-git-hooks"
60
},
scripts/devPreinstall.mts scripts/devPreinstall.js
@@ -1,4 +1,4 @@
1
-import fs from 'node:fs'
+const fs = require('node:fs')
2
3
function convertVersion(dependencies) {
4
let isConverted = false
0 commit comments