We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f97200f commit fe31480Copy full SHA for fe31480
1 file changed
package.json
@@ -41,7 +41,9 @@
41
"typescript": "^5.9.3"
42
},
43
"scripts": {
44
- "prepack": "rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist",
+ "build": "rimraf ./dist && npm run compile",
45
+ "compile": "tsc --outDir dist --declaration --declarationDir dist",
46
+ "prepack": "npm run build",
47
"pretest": "prettier --check .",
48
"test": "jest --ci",
49
"test:watch": "jest --watch --notify",
0 commit comments