Skip to content

Commit

Permalink
fix: force delete dist directory
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKreil committed Jan 26, 2025
1 parent bd8d8fc commit 453aff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"check": "npm run lint && npm run test && npm run build",
"build": "rm -rf release; npm run build-browser && npm run build-node && npm run build-styles && npm run build-sprites && npm run doc",
"build-browser": "rollup --configPlugin @rollup/plugin-typescript -c --environment BUILD:browser && $(cd release/versatiles-style; tar -cf - versatiles-style.* | gzip -9 > ../versatiles-style.tar.gz)",
"build-node": "rm -r dist && rollup --configPlugin @rollup/plugin-typescript -c --environment BUILD:node && chmod +x dist/index.js && rm -r dist/declaration",
"build-node": "rm -rf dist && rollup --configPlugin @rollup/plugin-typescript -c --environment BUILD:node && chmod +x dist/index.js && rm -r dist/declaration",
"build-styles": "tsx scripts/build-styles.ts",
"build-sprites": "tsx scripts/build-sprites.ts",
"dev": "tsx scripts/dev.ts",
Expand Down

0 comments on commit 453aff1

Please sign in to comment.