Merge pull request #1464 from ethereum/new_remix_lib
Adapt to remix lib refactoring
Showing
... | @@ -37,9 +37,10 @@ | ... | @@ -37,9 +37,10 @@ |
"npm-link-local": "^1.1.0", | "npm-link-local": "^1.1.0", | ||
"npm-run-all": "^4.0.2", | "npm-run-all": "^4.0.2", | ||
"onchange": "^3.2.1", | "onchange": "^3.2.1", | ||
"remix-core": "0.0.15", | "remix-debug": "latest", | ||
"remix-lib": "0.2.9", | "remix-analyzer": "latest", | ||
"remix-solidity": "0.1.11", | "remix-lib": "latest", | ||
"remix-solidity": "latest", | |||
"remix-tests": "latest", | "remix-tests": "latest", | ||
"remixd": "git+https://github.com/ethereum/remixd.git", | "remixd": "git+https://github.com/ethereum/remixd.git", | ||
"request": "^2.83.0", | "request": "^2.83.0", | ||
... | @@ -145,19 +146,18 @@ | ... | @@ -145,19 +146,18 @@ |
"scripts": { | "scripts": { | ||
"setupremix": "npm run pullremix && npm run linkremixcore && npm run linkremixlib && npm run linkremixsolidity;", | "setupremix": "npm run pullremix && npm run linkremixcore && npm run linkremixlib && npm run linkremixsolidity;", | ||
"pullremix": "git clone https://github.com/ethereum/remix", | "pullremix": "git clone https://github.com/ethereum/remix", | ||
"linkremixcore": "cd node_modules && rm -rf remix-core && ln -s ../remix/remix-core remix-core && cd ..", | |||
"linkremixlib": "cd node_modules && rm -rf remix-lib && ln -s ../remix/remix-lib remix-lib && cd ..", | "linkremixlib": "cd node_modules && rm -rf remix-lib && ln -s ../remix/remix-lib remix-lib && cd ..", | ||
"linkremixsolidity": "cd node_modules && rm -rf remix-solidity && ln -s ../remix/remix-solidity remix-solidity && cd ..", | "linkremixsolidity": "cd node_modules && rm -rf remix-solidity && ln -s ../remix/remix-solidity remix-solidity && cd ..", | ||
"build": "browserify src/index.js -o build/app.js --exclude solc", | "build": "browserify src/index.js -o build/app.js --exclude solc", | ||
"build_debugger": "browserify src/app/debugger/remix-debugger/index.js -o src/app/debugger/remix-debugger/build/app.js", | "build_debugger": "browserify src/app/debugger/remix-debugger/index.js -o src/app/debugger/remix-debugger/build/app.js", | ||
"browsertest": "sleep 5 && npm run nightwatch_local", | "browsertest": "sleep 5 && npm run nightwatch_local", | ||
"csslint": "csslint --ignore=order-alphabetical --errors='errors,duplicate-properties,empty-rules' --exclude-list='assets/css/font-awesome.min.css' assets/css/", | "csslint": "csslint --ignore=order-alphabetical --errors='errors,duplicate-properties,empty-rules' --exclude-list='assets/css/font-awesome.min.css' assets/css/", | ||
"downloadsolc": "rimraf soljson.js && cd node_modules/solc && wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js && cd ../../", | |||
"downloadsolc_root": "wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js", | "downloadsolc_root": "wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js", | ||
"lint": "standard | notify-error", | "lint": "standard | notify-error", | ||
"make-mock-compiler": "node ci/makeMockCompiler.js", | "make-mock-compiler": "node ci/makeMockCompiler.js", | ||
"minify": "uglifyjs --in-source-map inline --source-map-inline -c warnings=false", | "minify": "uglifyjs --in-source-map inline --source-map-inline -c warnings=false", | ||
"nightwatch_local": "nightwatch --config nightwatch.js --env local", | "nightwatch_local": "nightwatch --config nightwatch.js --env local", | ||
"nightwatch_local_debugger": "nightwatch --config nightwatch_debugger.js --env local", | |||
"nightwatch_remote_chrome": "nightwatch --config nightwatch.js --env chrome", | "nightwatch_remote_chrome": "nightwatch --config nightwatch.js --env chrome", | ||
"nightwatch_remote_firefox": "nightwatch --config nightwatch.js --env default", | "nightwatch_remote_firefox": "nightwatch --config nightwatch.js --env default", | ||
"nightwatch_remote_ie": "nightwatch --config nightwatch.js --env ie", | "nightwatch_remote_ie": "nightwatch --config nightwatch.js --env ie", | ||
... | ... |
Please
register
or
sign in
to comment