Skip to content

Commit 3dadcb6

Browse files
committed
build: move creation of package.json to postbuild
1 parent f7f86c6 commit 3dadcb6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@
1919
"test": "test"
2020
},
2121
"scripts": {
22-
"build": "npm run build:cjs && npm run build:esm && npm run build:types && bash ./scripts/build.sh",
22+
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
2323
"build:cjs": "tsc -p tsconfig.cjs.json",
2424
"build:esm": "tsc -p tsconfig.esm.json",
2525
"build:types": "tsc --emitDeclarationOnly -p tsconfig.json",
2626
"example": "node --loader ts-node/esm example",
27+
"postbuild": "bash ./scripts/postbuild.sh",
2728
"prepare": "npm run build",
2829
"prepublishOnly": "npm run test",
2930
"test": "node --loader ts-node/esm test"
File renamed without changes.

0 commit comments

Comments
 (0)