Merge pull request #1234 from ethereum/FixRemixSolidityDep

use babel 7
pull/7/head
yann300 5 years ago committed by GitHub
commit f1cf75bbb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      remix-simulator/package.json
  2. 4
      remix-tests/package.json

@ -1,6 +1,6 @@
{ {
"name": "remix-simulator", "name": "remix-simulator",
"version": "0.1.8-alpha", "version": "0.1.8-alpha.1",
"description": "Ethereum IDE and tools for the web", "description": "Ethereum IDE and tools for the web",
"contributors": [ "contributors": [
{ {
@ -30,10 +30,14 @@
"web3": "1.0.0-beta.27" "web3": "1.0.0-beta.27"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.4.5",
"babel-eslint": "^7.1.1", "babel-eslint": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.22.0", "@babel/plugin-transform-object-assign": "^7.2.0",
"babel-preset-es2017": "^6.24.1", "@babel/preset-env": "^7.4.5",
"babelify": "^7.3.0", "@babel/preset-es2015": "latest",
"@babel/preset-es2017": "latest",
"@babel/preset-stage-0": "^7.0.0",
"babelify": "^10.0.0",
"mocha": "^5.2.0", "mocha": "^5.2.0",
"standard": "^10.0.3" "standard": "^10.0.3"
}, },
@ -78,7 +82,7 @@
} }
} }
], ],
"transform-object-assign" "module:@babel/plugin-transform-object-assign"
] ]
} }
], ],
@ -86,7 +90,7 @@
"babelify", "babelify",
{ {
"presets": [ "presets": [
"es2017" "@babel/preset-env"
] ]
} }
] ]

@ -1,6 +1,6 @@
{ {
"name": "remix-tests", "name": "remix-tests",
"version": "0.1.10", "version": "0.1.11",
"description": "Tests for the Ethereum tool suite Remix", "description": "Tests for the Ethereum tool suite Remix",
"main": "./dist/index.js", "main": "./dist/index.js",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
@ -43,7 +43,7 @@
"colors": "^1.1.2", "colors": "^1.1.2",
"commander": "^2.13.0", "commander": "^2.13.0",
"remix-lib": "0.4.7", "remix-lib": "0.4.7",
"remix-simulator": "0.1.8-alpha", "remix-simulator": "0.1.8-alpha.1",
"remix-solidity": "0.3.8", "remix-solidity": "0.3.8",
"signale": "^1.2.1", "signale": "^1.2.1",
"web3": "1.0.0-beta.36", "web3": "1.0.0-beta.36",

Loading…
Cancel
Save