diff options
author | Dan Finlay <542863+danfinlay@users.noreply.github.com> | 2018-03-21 01:00:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 01:00:27 +0800 |
commit | 5c5f476ba4d0b26f6b8a71e16a8ff340566eb0b7 (patch) | |
tree | 78d49740097d29e06000c0c3024ae36923f6d6bd | |
parent | 1079d57f8cd0513e9571457b00eb3e9b44c26215 (diff) | |
parent | faa28490827adea52d71c5b9aa8c2af7c0f990ca (diff) | |
download | tangerine-wallet-browser-5c5f476ba4d0b26f6b8a71e16a8ff340566eb0b7.tar tangerine-wallet-browser-5c5f476ba4d0b26f6b8a71e16a8ff340566eb0b7.tar.gz tangerine-wallet-browser-5c5f476ba4d0b26f6b8a71e16a8ff340566eb0b7.tar.bz2 tangerine-wallet-browser-5c5f476ba4d0b26f6b8a71e16a8ff340566eb0b7.tar.lz tangerine-wallet-browser-5c5f476ba4d0b26f6b8a71e16a8ff340566eb0b7.tar.xz tangerine-wallet-browser-5c5f476ba4d0b26f6b8a71e16a8ff340566eb0b7.tar.zst tangerine-wallet-browser-5c5f476ba4d0b26f6b8a71e16a8ff340566eb0b7.zip |
Merge pull request #3628 from ryan-rowland/3505_Transpile_to_ES5
Issue 3505 | Transpile to ES5
-rw-r--r-- | gulpfile.js | 6 | ||||
-rw-r--r-- | package.json | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js index adfb148a9..dbbb1e4ff 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -408,7 +408,11 @@ function bundleTask(opts) { .pipe(gulpif(debug, sourcemaps.init({ loadMaps: true }))) // Minification .pipe(gulpif(opts.isBuild, uglify({ - mangle: { reserved: [ 'MetamaskInpageProvider' ] }, + mangle: { reserved: [ 'MetamaskInpageProvider' ] }, + }))) + // Transpile to ES5 + .pipe(gulpif(opts.isBuild, babel({ + presets: ['env'] }))) // writes .map file .pipe(gulpif(debug, sourcemaps.write('./'))) diff --git a/package.json b/package.json index 00587ece6..d3c0299fc 100644 --- a/package.json +++ b/package.json @@ -10,9 +10,10 @@ "mock": "beefy development/mock-dev.js:bundle.js --live --open --index=./development/index.html --cwd ./", "watch": "mocha watch --recursive \"test/unit/**/*.js\"", "mascara": "gulp build && cross-env METAMASK_DEBUG=true node ./mascara/example/server", - "dist": "npm run dist:clear && npm install && gulp dist", + "dist": "npm run dist:clear && npm install && gulp dist && npm run test:es5", "dist:clear": "rm -rf node_modules/eth-contract-metadata && rm -rf node_modules/eth-phishing-detect", "test": "npm run lint && npm run test:coverage && npm run test:integration", + "test:es5": "es-check es5 ./dist/**/*.js", "test:unit": "cross-env METAMASK_ENV=test mocha --exit --require babel-core/register --require test/helper.js --recursive \"test/unit/**/*.js\"", "test:single": "cross-env METAMASK_ENV=test mocha --require test/helper.js", "test:integration": "npm run test:integration:build && npm run test:flat && npm run test:mascara", @@ -200,6 +201,7 @@ "envify": "^4.0.0", "enzyme": "^3.3.0", "enzyme-adapter-react-15": "^1.0.5", + "es-check": "^2.0.2", "eslint-plugin-chai": "0.0.1", "eslint-plugin-mocha": "^4.9.0", "eslint-plugin-react": "^7.4.0", |