remove prod flag from build cmd and add alternative build-min cmd (#368)

This commit is contained in:
Fabio Pliger
2022-05-13 19:08:02 -05:00
committed by GitHub
parent 74d29bca8c
commit 8c65cad209

View File

@@ -2,7 +2,8 @@
"name": "pyscript", "name": "pyscript",
"version": "0.0.1", "version": "0.0.1",
"scripts": { "scripts": {
"build": "NODE_ENV=production rollup -c", "build-min": "NODE_ENV=production rollup -c",
"build": "rollup -c",
"dev": "rollup -c -w", "dev": "rollup -c -w",
"start": "sirv public --no-clear --port 8080", "start": "sirv public --no-clear --port 8080",
"validate": "svelte-check", "validate": "svelte-check",