Skip to content
Snippets Groups Projects
Commit 210ce358 authored by Marcus Schiesser's avatar Marcus Schiesser
Browse files

fix: remove cleaning the build assets (doesn't work as due to how ncc references the assets)

parent 36905f64
No related branches found
No related tags found
No related merge requests found
...@@ -22,8 +22,7 @@ ...@@ -22,8 +22,7 @@
"scripts": { "scripts": {
"clean": "rimraf --glob ./dist ./templates/**/__pycache__ ./templates/**/node_modules ./templates/**/poetry.lock", "clean": "rimraf --glob ./dist ./templates/**/__pycache__ ./templates/**/node_modules ./templates/**/poetry.lock",
"dev": "ncc build ./index.ts -w -o dist/", "dev": "ncc build ./index.ts -w -o dist/",
"build": "npm run clean && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register && npm run postbuild", "build": "npm run clean && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
"postbuild": "rimraf dist/data dist/none dist/typescript dist/ui",
"lint": "eslint . --ignore-pattern dist", "lint": "eslint . --ignore-pattern dist",
"e2e": "playwright test", "e2e": "playwright test",
"prepublishOnly": "cd ../../ && turbo run build" "prepublishOnly": "cd ../../ && turbo run build"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment