Merge pull request #1169 from ethereum/fixCompilerLoading
Fix loading compiler
Showing
{ | ||
"name": "remix-ide", | ||
"version": "0.5.2-alpha.6", | ||
"version": "0.5.2-alpha.7", | ||
"description": "Minimalistic browser-based Solidity IDE", | ||
"devDependencies": { | ||
"async": "^2.1.2", | ||
... | ... | @@ -144,8 +144,8 @@ |
"build": "browserify src/index.js -o build/app.js", | ||
"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/", | ||
"downloadsolc": "rimraf soljson.js && cd node_modules/solc && wget https://ethereum.github.io/solc-bin/soljson.js && cd ../../", | ||
"downloadsolc_root": "wget https://ethereum.github.io/solc-bin/soljson.js", | ||
"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", | ||
"lint": "standard | notify-error", | ||
"make-mock-compiler": "node ci/makeMockCompiler.js", | ||
"minify": "uglifyjs --in-source-map inline --source-map-inline -c warnings=false", | ||
... | ... |
Please
register
or
sign in
to comment