Don't use --quiet

This commit is contained in:
Nathan Faubion 2022-05-16 12:56:37 -07:00
parent c8789d9ba2
commit 67fd38568e

View File

@ -18,8 +18,8 @@
"postversion": "git push && git push --tags",
"build": "spago -x bin/spago.dhall build",
"bundle": "npm run build && npm run bundle:main && npm run bundle:worker",
"bundle:main": "spago -x bin/spago.dhall bundle-module --platform node --to './bundle/Main/index.js' --no-build --quiet",
"bundle:worker": "spago -x bin/spago.dhall bundle-app --platform node --to './bundle/Bin.Worker/index.js' --main Bin.Worker --no-build --quiet",
"bundle:main": "spago -x bin/spago.dhall bundle-module --platform node --to './bundle/Main/index.js' --no-build",
"bundle:worker": "spago -x bin/spago.dhall bundle-app --platform node --to './bundle/Bin.Worker/index.js' --main Bin.Worker --no-build",
"test": "spago -x test/spago.dhall test",
"generate-default-operators": "spago -x script/spago.dhall run -m GenerateDefaultOperatorsModule",
"format-self": "npm run build && node ./bin/index.js format-in-place src 'test/*.purs' bin script",