aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2019-01-26 01:22:11 +0800
committerGitHub <noreply@github.com>2019-01-26 01:22:11 +0800
commit25e42c0ad47e9ec06e474cd12a488ae837660302 (patch)
treeea2321129b37f40917701c179351623164f81685 /packages
parente0022cd98c34fee5cb3adac38cf8920bbd30ac6c (diff)
parent1c032a103d8bedd45151bda117cbf30c12df0364 (diff)
downloaddexon-0x-contracts-25e42c0ad47e9ec06e474cd12a488ae837660302.tar
dexon-0x-contracts-25e42c0ad47e9ec06e474cd12a488ae837660302.tar.gz
dexon-0x-contracts-25e42c0ad47e9ec06e474cd12a488ae837660302.tar.bz2
dexon-0x-contracts-25e42c0ad47e9ec06e474cd12a488ae837660302.tar.lz
dexon-0x-contracts-25e42c0ad47e9ec06e474cd12a488ae837660302.tar.xz
dexon-0x-contracts-25e42c0ad47e9ec06e474cd12a488ae837660302.tar.zst
dexon-0x-contracts-25e42c0ad47e9ec06e474cd12a488ae837660302.zip
Merge pull request #1549 from 0xProject/justinbarry-0x-monorepo-mirror
[instant] [mirror] Output Chrome 41 compatible version of 0x instant
Diffstat (limited to 'packages')
-rw-r--r--packages/instant/package.json8
-rw-r--r--packages/instant/webpack.config.js25
2 files changed, 27 insertions, 6 deletions
diff --git a/packages/instant/package.json b/packages/instant/package.json
index 86fac9afe..f7e15a3e0 100644
--- a/packages/instant/package.json
+++ b/packages/instant/package.json
@@ -9,6 +9,7 @@
"main": "umd/instant.js",
"scripts": {
"build": "webpack --mode production",
+ "build:dev": "webpack --mode development",
"build:ci": "yarn build",
"dev": "dotenv webpack-dev-server -- --mode development",
"lint": "tslint --format stylish --project .",
@@ -50,6 +51,7 @@
"@0x/typescript-typings": "^3.0.8",
"@0x/utils": "^3.0.1",
"@0x/web3-wrapper": "^3.2.4",
+ "babel-runtime": "^6.26.0",
"bowser": "^1.9.4",
"copy-to-clipboard": "^3.0.8",
"ethereum-types": "^1.1.6",
@@ -78,6 +80,12 @@
"@types/redux": "^3.6.0",
"@types/styled-components": "4.0.1",
"awesome-typescript-loader": "^5.2.1",
+ "babel-loader": "^7.1.5",
+ "babel-preset-env": "^1.7.0",
+ "babel-plugin-transform-runtime": "^6.23.0",
+ "babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
+ "babel-plugin-transform-es3-property-literals": "^6.22.0",
+ "babel-plugin-transform-object-assign": "^6.22.0",
"dotenv-cli": "^1.4.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
diff --git a/packages/instant/webpack.config.js b/packages/instant/webpack.config.js
index e74cf36d9..13d574de4 100644
--- a/packages/instant/webpack.config.js
+++ b/packages/instant/webpack.config.js
@@ -141,12 +141,25 @@ const generateConfig = (dischargeTarget, heapConfigOptions, rollbarConfigOptions
},
{
test: /\.js$/,
- loader: 'source-map-loader',
- exclude: [
- // instead of /\/node_modules\//
- path.join(process.cwd(), 'node_modules'),
- path.join(process.cwd(), '../..', 'node_modules'),
- ],
+ use: [{
+ loader: 'babel-loader',
+ options: {
+ "plugins": ["transform-runtime"],
+ 'presets': [
+ ['env', {
+ 'targets': {
+ "chrome": 41
+ },
+ }],
+ ],
+ },
+ }, {
+ loader: 'source-map-loader',
+ }],
+ exclude: function(modulePath) {
+ return /node_modules/.test(modulePath) &&
+ /node_modules\/(core-js|lodash|react|websocket)/.test(modulePath);
+ },
},
],
},