We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfe3456 commit b3e1b42Copy full SHA for b3e1b42
.github/workflows/release.yml
@@ -30,7 +30,7 @@ jobs:
30
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
31
run: npm audit signatures
32
- name: Build and Pack
33
- run: npm pack
+ run: npm run build:webpack
34
- name: Release
35
env:
36
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package.json
@@ -8,8 +8,8 @@
8
"format": "prettier -w src/* examples/*",
9
"check-format": "prettier -c src/* examples/*",
10
"build": "tsc",
11
- "pack": "webpack",
12
- "prepack": "npm run build",
+ "build:webpack": "webpack",
+ "prebuild:webpack": "npm run build",
13
"prepublish": "npm run build",
14
"clean": "rm -rf dist",
15
"build:docs": "typedoc src/index.ts",
0 commit comments