Skip to content

Commit

Permalink
fix(ci): fix previous build due to ci issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Caesarovich committed Oct 11, 2023
1 parent cfe3456 commit b3e1b42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Build and Pack
run: npm pack
run: npm run build:webpack
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"format": "prettier -w src/* examples/*",
"check-format": "prettier -c src/* examples/*",
"build": "tsc",
"pack": "webpack",
"prepack": "npm run build",
"build:webpack": "webpack",
"prebuild:webpack": "npm run build",
"prepublish": "npm run build",
"clean": "rm -rf dist",
"build:docs": "typedoc src/index.ts",
Expand Down

0 comments on commit b3e1b42

Please sign in to comment.