Skip to content

Commit

Permalink
[Dev Deps] uglify-js: add --support-ie8 and peg to v2.7.x since i…
Browse files Browse the repository at this point in the history
…t doesn’t follow semver

Per mishoo/UglifyJS#1179 (comment)
  • Loading branch information
ljharb committed Sep 27, 2016
1 parent 358ebcc commit b291cfa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
},
"scripts": {
"minify": "concurrently --raw 'npm run --silent minify-shim' 'npm run --silent minify-sham'",
"minify-shim": "uglifyjs es5-shim.js --keep-fnames --comments --source-map=es5-shim.map -m -b ascii_only=true,beautify=false > es5-shim.min.js",
"minify-sham": "uglifyjs es5-sham.js --keep-fnames --comments --source-map=es5-sham.map -m -b ascii_only=true,beautify=false > es5-sham.min.js",
"minify-shim": "uglifyjs es5-shim.js --support-ie8 --keep-fnames --comments --source-map=es5-shim.map -m -b ascii_only=true,beautify=false > es5-shim.min.js",
"minify-sham": "uglifyjs es5-sham.js --support-ie8 --keep-fnames --comments --source-map=es5-sham.map -m -b ascii_only=true,beautify=false > es5-sham.min.js",
"pretest": "npm run --silent lint",
"test": "npm run --silent tests-only",
"tests-only": "jasmine-node --matchall ./ tests/spec/",
Expand All @@ -38,7 +38,7 @@
"@ljharb/eslint-config": "^8.0.0",
"jasmine-node": "^1.14.5",
"jscs": "^3.0.7",
"uglify-js": "^2.7.3",
"uglify-js": "~2.7.3",
"replace": "^0.3.0",
"semver": "^5.3.0",
"concurrently": "^3.0.0"
Expand Down

0 comments on commit b291cfa

Please sign in to comment.