Skip to content

Commit

Permalink
fix(build): set --compress false for microbundle build (#2314)
Browse files Browse the repository at this point in the history
microbundle defaults to --compress true, and apps should be minifying their own code
  • Loading branch information
phwebi committed Oct 27, 2021
1 parent e093a1e commit 26c85fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -16,7 +16,7 @@
"cover": "npm test -- --coverage",
"start": "start-storybook -s ./static -p 8080",
"build:docs": "build-storybook -s ./static -o ./build",
"build": "microbundle --generateTypes false --jsx React.createElement",
"build": "microbundle --generateTypes false --jsx React.createElement --compress false",
"version": "node_modules/.bin/conventional-changelog -i CHANGELOG.md -o CHANGELOG.md -p angular && git add -A CHANGELOG.md",
"prepublishOnly": "npm run build",
"create-release": "npm run cover && sh ./scripts/release",
Expand Down

0 comments on commit 26c85fb

Please sign in to comment.