Created
February 27, 2021 19:24
-
-
Save kim366/3131ab2a23f44da4f205da7dbb3d9ebb to your computer and use it in GitHub Desktop.
Revisions
-
kim366 created this gist
Feb 27, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ "scripts": { "build": "spago build --purs-args \"--censor-codes=UserDefinedWarning\"", "dev": "concurrently -rki \"pscid --censor-codes UserDefinedWarning\" \"parcel assets/index.html\"", "test": "spago test --purs-args \"--censor-codes=UserDefinedWarning\"", "serve": "http-server dist", "bundle:build": "NODE_ENV=production spago build --purs-args '--codegen corefn'", "bundle:dce": "NODE_ENV=production zephyr Main.main", "bundle:parcel": "NODE_ENV=production parcel build assets/index.html --no-source-maps --log-level 4", "bundle:prerender": "bash scripts/prerender.sh", "bundle": "npm run bundle:build && npm run bundle:dce && npm run bundle:parcel && npm run bundle:prerender", "clean": "rimraf output dce-output dist .cache", "bundle:clean": "npm run clean && npm run bundle" }