Skip to content

Commit

Permalink
fix: do not minify ripple.js
Browse files Browse the repository at this point in the history
  • Loading branch information
pemrouz committed Sep 10, 2016
1 parent 99fcb2e commit 902dd10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"babel": "babel src -d dist",
"build": "npm run clean && npm run babel && npm run ignore && npm run build:pure && npm run bundle && npm run minify && npm run gzip",
"build:pure": "npm run bundle:pure && npm run minify:pure",
"bundle": "sh -c 'echo \"require(\\'utilise\\');$(cat dist/index.js)\" | browserify - -g ./clientify -i **/pause.js -i **/via.js -i **/send.js -i **/grep.js -i colors --no-builtins | uglifyjs - -o dist/ripple.js -c unused,dead_code",
"bundle": "sh -c 'echo \"require(\\'utilise\\');$(cat dist/index.js)\" | browserify - -g ./clientify -i **/pause.js -i **/via.js -i **/send.js -i **/grep.js -i colors --no-builtins | uglifyjs - -o dist/ripple.js -c unused,dead_code -b",
"bundle:pure": "browserify dist/index.js -g ./purify -i **/utilise/**/*.js --no-builtins -i colors | uglifyjs - -o dist/ripple.pure.js -c unused,dead_code -b",
"clean": "rm -rf dist && mkdir dist",
"gzip": "gzip -c dist/ripple.min.js > dist/ripple.min.js.gz && gzip -c dist/ripple.pure.min.js > dist/ripple.pure.min.js.gz",
Expand Down

0 comments on commit 902dd10

Please sign in to comment.