Skip to content

Commit b3e1b42

Browse files
committed
fix(ci): fix previous build due to ci issue
1 parent cfe3456 commit b3e1b42

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
3131
run: npm audit signatures
3232
- name: Build and Pack
33-
run: npm pack
33+
run: npm run build:webpack
3434
- name: Release
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"format": "prettier -w src/* examples/*",
99
"check-format": "prettier -c src/* examples/*",
1010
"build": "tsc",
11-
"pack": "webpack",
12-
"prepack": "npm run build",
11+
"build:webpack": "webpack",
12+
"prebuild:webpack": "npm run build",
1313
"prepublish": "npm run build",
1414
"clean": "rm -rf dist",
1515
"build:docs": "typedoc src/index.ts",

0 commit comments

Comments
 (0)