We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c710c4a commit f7de413Copy full SHA for f7de413
.github/workflows/release.yml
@@ -24,7 +24,7 @@ jobs:
24
version: 8.x
25
26
- name: install node modules
27
- run: pnpm config set enable-pre-post-scripts false "" && pnpm i --prod
+ run: npm pkg delete scripts.prepare && pnpm i
28
29
- name: build package
30
run: pnpm build
package.json
@@ -18,7 +18,7 @@
18
"lint:fix": "eslint src/** --fix --ext=ts",
19
"format:check": "prettier --check src/**",
20
"format:fix": "prettier --write src/**",
21
- "postinstall": "husky install",
+ "prepare": "husky install",
22
"watch": "parcel watch",
23
"build": "parcel build",
"test:dev": "vitest",
@@ -54,5 +54,6 @@
54
"typescript": "^5.1.6",
55
"vite": "^4.4.7",
56
"vitest": "^0.33.0"
57
- }
+ },
58
+ "prepare": "''"
59
}
0 commit comments