Merge pull request #874 from ethereum/solc_require_fix

Solc require fix
pull/7/head
yann300 6 years ago committed by GitHub
commit bb9ce7b120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      remix-analyzer/package.json
  2. 5
      remix-debug/package.json
  3. 9
      remix-solidity/package.json

@ -31,8 +31,7 @@
},
"standard": {
"ignore": [
"node_modules/*",
"soljson.js"
"node_modules/*"
],
"parser": "babel-eslint"
},

@ -28,7 +28,7 @@
"npm-run-all": "^4.1.2",
"fast-async": "^6.1.2",
"remix-lib": "^0.2.9",
"solc": "https://github.com/ethereum/solc-js"
"solc": "^0.4.24"
},
"devDependencies": {
"standard": "^7.0.1",
@ -38,8 +38,7 @@
"scripts": {
"build": "mkdirp build; browserify index.js > build/app.js",
"lint": "standard | notify-error",
"downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js) && cd ..",
"test": "standard && npm run downloadsolc && tape ./test/tests.js"
"test": "standard && tape ./test/tests.js"
},
"repository": {
"type": "git",

@ -23,20 +23,17 @@
"fast-async": "^6.1.2",
"npm-run-all": "^4.0.2",
"remix-lib": "^0.2.9",
"solc": "https://github.com/ethereum/solc-js",
"solc": "^0.4.24",
"standard": "^7.0.1",
"tape": "^4.6.0",
"webworkify": "^1.2.1"
},
"scripts": {
"downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js) && cd ..",
"prepublish": "mkdirp build; npm-run-all -ls downloadsolc",
"postinstall": "npm-run-all -ls downloadsolc"
"test": "standard && tape ./test/tests.js"
},
"standard": {
"ignore": [
"node_modules/*",
"soljson.js"
"node_modules/*"
],
"parser": "babel-eslint"
},

Loading…
Cancel
Save