Skip to content

Commit

Permalink
Remove uglify
Browse files Browse the repository at this point in the history
  • Loading branch information
guigrpa committed Nov 30, 2018
1 parent 897a39a commit b41cca8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
10 changes: 3 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,15 @@
"test": "yarn testCovFull",
"testFast": "ava",
"testCovFast": "yarn testCovPrepare && yarn testCovDev && yarn testCovReport",
"testCovFull": "yarn testCovPrepare && yarn testCovDev && yarn testCovProd && yarn testCovMin && yarn testCovReport",
"testCovNoMin": "yarn testCovPrepare && yarn testCovDev && yarn testCovProd && yarn testCovReport",
"testCovFull": "yarn testCovPrepare && yarn testCovDev && yarn testCovProd && yarn testCovReport",
"testCovPrepare": "rm -rf ./coverage .nyc_output .nyc_tmp && mkdir .nyc_tmp",
"testCovDev": "NODE_ENV=development nyc ava && mv .nyc_output/* .nyc_tmp/",
"testCovProd": "NODE_ENV=production nyc ava && mv .nyc_output/* .nyc_tmp/",
"testCovMin": "TEST_MINIFIED_LIB=1 nyc ava && mv .nyc_output/* .nyc_tmp/",
"testCovReport": "cp .nyc_tmp/* .nyc_output/ && nyc report --reporter=html --reporter=lcov",
"compile": "rm -rf ./lib && mkdir lib && babel -o lib/timm.js src/timm.js && cp src/api.js.flow lib/timm.js.flow && cp src/timm.d.ts lib/timm.d.ts",
"docs": "extract-docs --template docs/README_TEMPLATE.md --output README.md",
"uglify": "NODE_ENV=production envify lib/timm.js | uglifyjs - -o lib/timm.min.js --mangle --compress --comments \"/^!/\"",
"build": "yarn lint && yarn flow && yarn compile && yarn uglify && yarn testCovFull && yarn docs && yarn xxl",
"travis": "yarn compile && yarn testCovNoMin",
"build": "yarn lint && yarn flow && yarn compile && yarn testCovFull && yarn docs && yarn xxl",
"travis": "yarn compile && yarn testCovFull",
"xxl": "xxl",
"benchmarks": "node tools/benchmarks"
},
Expand Down Expand Up @@ -53,7 +50,6 @@
"oao": "^1.5.1",
"prettier": "^1.15.3",
"seamless-immutable": "^7.1.4",
"uglifyjs": "^2.4.11",
"xxl": "1.2.0"
},
"ava": {
Expand Down
4 changes: 0 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4717,10 +4717,6 @@ uglify-to-browserify@~1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"

uglifyjs@^2.4.11:
version "2.4.11"
resolved "https://registry.yarnpkg.com/uglifyjs/-/uglifyjs-2.4.11.tgz#3440d64e045759589524418eb641c68bb90d113e"

uid-number@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
Expand Down

0 comments on commit b41cca8

Please sign in to comment.