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

fix: produce clean create-llama builds

parent 812dbc41
No related branches found
No related tags found
No related merge requests found
**/__pycache__/
**/poetry.lock
\ No newline at end of file
...@@ -20,8 +20,9 @@ ...@@ -20,8 +20,9 @@
"dist" "dist"
], ],
"scripts": { "scripts": {
"clean": "rm -rf dist && find ./templates \\( -name \"dist\" -o -name \"__pycache__\" -o -name \"node_modules\" -o -name \"poetry.lock\" \\) -depth -exec rm -fr {} \\;",
"dev": "ncc build ./index.ts -w -o dist/", "dev": "ncc build ./index.ts -w -o dist/",
"build": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register", "build": "npm run clean && ncc build ./index.ts -o ./dist/ && rm -fr dist/data dist/none dist/typescript dist/ui",
"lint": "eslint . --ignore-pattern dist", "lint": "eslint . --ignore-pattern dist",
"e2e": "playwright test --reporter=list", "e2e": "playwright test --reporter=list",
"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