diff --git a/package.json b/package.json index 0d0bcd3540f2fb0a4c9ff973368763f66c81a00d..8f69b80000b4000c1d6948ebe5ff81a0c72b7cca 100644 --- a/package.json +++ b/package.json @@ -20,9 +20,10 @@ "dist" ], "scripts": { - "clean": "rm -rf dist && find ./templates \\( -name \"dist\" -o -name \"__pycache__\" -o -name \"node_modules\" -o -name \"poetry.lock\" \\) -depth -exec rm -fr {} \\;", + "clean": "rimraf --glob ./dist ./templates/**/__pycache__ ./templates/**/node_modules ./templates/**/poetry.lock", "dev": "ncc build ./index.ts -w -o dist/", - "build": "npm run clean && ncc build ./index.ts -o ./dist/ && rm -fr dist/data dist/none dist/typescript dist/ui", + "build": "npm run clean && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register && npm run postbuild", + "postbuild": "rimraf dist/data dist/none dist/typescript dist/ui", "lint": "eslint . --ignore-pattern dist", "e2e": "playwright test", "prepublishOnly": "cd ../../ && turbo run build" @@ -47,6 +48,7 @@ "got": "10.7.0", "picocolors": "1.0.0", "prompts": "2.1.0", + "rimraf": "^5.0.5", "tar": "6.1.15", "terminal-link": "^3.0.0", "update-check": "1.5.4",