Remove es6 target

This commit is contained in:
Leonid Logvinov 2017-05-26 15:00:25 +02:00
parent 6d7625296b
commit 97fc77d8e9
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
2 changed files with 1 additions and 4 deletions

2
.gitignore vendored
View File

@ -59,8 +59,6 @@ typings/
# built library using in commonjs module syntax
lib
# built library using es6 module syntax to enable webpack and rollup tree shaking
lib-esm
# UMD bundles that export the global variable
_bundles

View File

@ -10,10 +10,9 @@
"exchange"
],
"scripts": {
"clean": "shx rm -rf _bundles lib lib-esm",
"clean": "shx rm -rf _bundles lib",
"build:bundle": "webpack",
"build:commonjs": "tsc; copyfiles -u 2 ./src/artifacts/*.json ./../0x.js/lib/src/artifacts;",
"build:es6": "tsc -m es6 --outDir lib-esm",
"build": "npm run clean && run-p build:*",
"lint": "tslint src/ts/**/*",
"test": "run-s clean build:commonjs && mocha lib/test/**/*.js",