Refactor test commands
This commit is contained in:
parent
055763cd37
commit
6213407f54
24
package.json
24
package.json
@ -10,21 +10,27 @@
|
||||
"exchange"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "npm run clean && run-p build:*",
|
||||
"build": "npm run clean && run-p build:*:prod",
|
||||
"lint": "tslint src/**/*.ts",
|
||||
"test": "run-s build test:commonjs test:umd",
|
||||
"test": "run-s build:dev test:commonjs test:umd",
|
||||
"test:coverage": "nyc npm run test --all",
|
||||
"update_contracts": "for i in ${npm_package_config_artifacts}; do copyfiles -u 4 ../contracts/build/contracts/$i.json ../0x.js/src/artifacts; done;",
|
||||
"testrpc": "testrpc -p 8545 --networkId 50",
|
||||
|
||||
"clean": "shx rm -rf _bundles lib",
|
||||
"build:umd": "webpack",
|
||||
"build:commonjs": "tsc; copyfiles -u 2 ./src/artifacts/*.json ../0x.js/lib/src/artifacts;",
|
||||
"test:commonjs": "mocha lib/test/**/*_test.js",
|
||||
"test:umd": "shx rm -rf lib/src/* && mv _bundles/* lib/src && npm run test:commonjs",
|
||||
"docs:json": "typedoc --json docs/index.json .",
|
||||
"docs:generate": "typedoc --out docs .",
|
||||
"docs:open": "opn docs/index.html"
|
||||
"docs:open": "opn docs/index.html",
|
||||
|
||||
"clean": "shx rm -rf _bundles lib",
|
||||
"build:dev": "npm run clean && run-p build:*:dev",
|
||||
"build:umd:dev": "webpack",
|
||||
"build:umd:prod": "webpack -p",
|
||||
"build:commonjs:dev": "tsc; copyfiles -u 2 ./src/artifacts/*.json ../0x.js/lib/src/artifacts;",
|
||||
"run_mocha": "mocha test_temp/test/**/*_test.js",
|
||||
"test:commonjs": "run-s build:commonjs:dev setup_commonjs run_mocha tear_down",
|
||||
"test:umd": "run-s build:*:dev setup_umd run_mocha tear_down",
|
||||
"setup_commonjs": "shx cp -r lib test_temp",
|
||||
"setup_umd": "shx mkdir -p test_temp/src && shx cp _bundles/* test_temp/src && shx cp -r lib/test test_temp/test",
|
||||
"tear_down": "shx rm -rf test_temp"
|
||||
},
|
||||
"config": {
|
||||
"artifacts": "Proxy Exchange TokenRegistry Token Mintable EtherToken"
|
||||
|
@ -3,12 +3,17 @@
|
||||
*/
|
||||
const webpack = require('webpack');
|
||||
const path = require('path');
|
||||
const PROD = process.env.NODE_ENV === 'production';
|
||||
|
||||
let entry = {
|
||||
'0x': './src/0x.js.ts',
|
||||
};
|
||||
if (PROD) {
|
||||
entry = Object.assign({}, entry, {'0x.min': './src/0x.js.ts'});
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
entry: {
|
||||
'0x': './src/0x.js.ts',
|
||||
'0x.min': './src/0x.js.ts'
|
||||
},
|
||||
entry,
|
||||
output: {
|
||||
path: path.resolve(__dirname, '_bundles'),
|
||||
filename: '[name].js',
|
||||
|
Loading…
x
Reference in New Issue
Block a user