Skip to content

Commit 479e2f2

Browse files
authored
chore: fixes build (#1454)
* chore: fix build * chore: reset build
1 parent 5d0837a commit 479e2f2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
- uses: actions/setup-node@v3
3838
with:
3939
node-version: '16'
40+
- run: npm i
4041
- run: npm run build
4142
- name: Update dist
4243
run: |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"build:esbuild": "esbuild src/playground/index.ts src/playground/resizer.ts --splitting --target=es2020 --legal-comments=linked --bundle --format=esm --minify --outdir=dist",
2424
"build:worker": "esbuild ./node_modules/playground-elements/playground-typescript-worker.js --platform=node --legal-comments=linked --bundle --minify --outfile=dist/playground-typescript-worker.js",
2525
"build:tailwind": "tailwindcss -i ./src/playground/style.css -o ./dist/samples/playground.css --minify",
26-
"build": "npm run clean && npm run build:eleventy && npm run build:esbuild && npm run build:worker && npm run build:tailwind",
26+
"build": "npm-run-all clean -p build:*",
2727
"ci": "npm run build && npm run test",
2828
"clean": "npx rimraf dist/*",
2929
"clean:cache": "npx rimraf .cache/* ./parcel-cache/*",

0 commit comments

Comments
 (0)