1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-08 12:22:23 +04:00

Fix clean script in package.json to remove only the dist directory

This commit is contained in:
codecalm
2025-02-12 18:45:59 +01:00
parent 55f467c945
commit 3320246d0f
+1 -1
View File
@@ -6,7 +6,7 @@
"scripts": {
"dev": "pnpm run watch",
"build": "pnpm run clean && pnpm run css && pnpm run js && pnpm run copy",
"clean": "rimraf dist/* demo",
"clean": "rimraf dist demo",
"css": "pnpm run css-compile && pnpm run css-prefix && pnpm run css-rtl && pnpm run css-minify && pnpm run css-banner",
"css-compile": "sass scss/:dist/css/ --no-source-map --load-path=node_modules",
"css-banner": "node build/add-banner.mjs",