Merge pull request #1157 from ethereum/remixonnpm
Fix deploy build folder to npm package
Showing
.npmignore
0 → 100644
{ | ||
"name": "remix-ide", | ||
"version": "0.5.0", | ||
"version": "0.5.2-alpha.1", | ||
"description": "Minimalistic browser-based Solidity IDE", | ||
"devDependencies": { | ||
"async": "^2.1.2", | ||
... | ... | @@ -145,6 +145,7 @@ |
"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", | ||
"lint": "standard | notify-error", | ||
"make-mock-compiler": "node ci/makeMockCompiler.js", | ||
"minify": "uglifyjs --in-source-map inline --source-map-inline -c warnings=false", | ||
... | ... | @@ -155,7 +156,7 @@ |
"nightwatch_remote_parallel": "nightwatch --config nightwatch.js --env safari,chrome,default", | ||
"nightwatch_remote_safari": "nightwatch --config nightwatch.js --env safari", | ||
"onchange": "onchange build/app.js -- npm-run-all lint", | ||
"prepublish": "mkdirp build; npm-run-all -ls downloadsolc build", | ||
"prepublish": "mkdirp build; npm-run-all -ls downloadsolc_root build", | ||
"remixd": "node ./node_modules/remixd/src/main.js -s ./contracts", | ||
"selenium": "execr --silent selenium-standalone start", | ||
"selenium-install": "selenium-standalone install", | ||
... | ... |
Please
register
or
sign in
to comment