Merge pull request #463 from ethereum/build-improvements
Build improvements
Showing
... | @@ -10,9 +10,9 @@ | ... | @@ -10,9 +10,9 @@ |
"browser-test-remote-ie": "nightwatch --config nightwatch.js --env ie", | "browser-test-remote-ie": "nightwatch --config nightwatch.js --env ie", | ||
"browser-test-remote-safari": "nightwatch --config nightwatch.js --env safari", | "browser-test-remote-safari": "nightwatch --config nightwatch.js --env safari", | ||
"browser-test-remote-parallel": "nightwatch --config nightwatch.js --env safari,ie,default,chrome", | "browser-test-remote-parallel": "nightwatch --config nightwatch.js --env safari,ie,default,chrome", | ||
"build": "mkdir build; browserify src/index.js -g yo-yoify -o build/app.js -t [ babelify ]; babel --plugins=transform-es2015-template-literals build/app.js --out-file build/app.js", | "build": "mkdirp build; browserify src/index.js -g yo-yoify -o build/app.js -t [ babelify ]; babel --plugins=transform-es2015-template-literals build/app.js --out-file build/app.js", | ||
"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": "rm soljson.js; wget https://ethereum.github.io/solc-bin/soljson.js", | "downloadsolc": "rm -f soljson.js; wget https://ethereum.github.io/solc-bin/soljson.js", | ||
"lint": "standard", | "lint": "standard", | ||
"serve": "http-server .", | "serve": "http-server .", | ||
"test": "standard; babel src --out-dir babelify-src; node test/index.js" | "test": "standard; babel src --out-dir babelify-src; node test/index.js" | ||
... | @@ -55,6 +55,7 @@ | ... | @@ -55,6 +55,7 @@ |
"http-server": "0.9.0", | "http-server": "0.9.0", | ||
"jquery": "^2.2.0", | "jquery": "^2.2.0", | ||
"js-base64": "^2.1.9", | "js-base64": "^2.1.9", | ||
"mkdirp": "^0.5.1", | |||
"nightwatch": "^0.9.3", | "nightwatch": "^0.9.3", | ||
"solc": "https://github.com/ethereum/solc-js", | "solc": "https://github.com/ethereum/solc-js", | ||
"standard": "^8.5.0", | "standard": "^8.5.0", | ||
... | ... |
Please
register
or
sign in
to comment