Skip to content

Commit

Permalink
Refactor to simplify build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Nov 17, 2018
1 parent 22d6dbf commit 7b96e2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
},
"scripts": {
"format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
"build-bundle": "browserify index.js -s rehypeRaw > rehype-raw.js",
"build-mangle": "browserify index.js -s rehypeRaw -p tinyify > rehype-raw.min.js",
"build-bundle": "browserify . -s rehypeRaw > rehype-raw.js",
"build-mangle": "browserify . -s rehypeRaw -p tinyify > rehype-raw.min.js",
"build": "npm run build-bundle && npm run build-mangle",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
Expand Down

0 comments on commit 7b96e2e

Please sign in to comment.