diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-26 21:00:25 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-26 21:00:40 +0800 |
commit | 97fc77d8e9a76fc469d2b90436a1f36c1e57a1b6 (patch) | |
tree | 35847b8e61f417a45df2eee366581c9d4a7c39d8 | |
parent | 6d7625296b7a50cfd16ec429b27eefdb7e6725f3 (diff) | |
download | dexon-sol-tools-97fc77d8e9a76fc469d2b90436a1f36c1e57a1b6.tar dexon-sol-tools-97fc77d8e9a76fc469d2b90436a1f36c1e57a1b6.tar.gz dexon-sol-tools-97fc77d8e9a76fc469d2b90436a1f36c1e57a1b6.tar.bz2 dexon-sol-tools-97fc77d8e9a76fc469d2b90436a1f36c1e57a1b6.tar.lz dexon-sol-tools-97fc77d8e9a76fc469d2b90436a1f36c1e57a1b6.tar.xz dexon-sol-tools-97fc77d8e9a76fc469d2b90436a1f36c1e57a1b6.tar.zst dexon-sol-tools-97fc77d8e9a76fc469d2b90436a1f36c1e57a1b6.zip |
Remove es6 target
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | package.json | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index 3c6a1ab6f..4e1909a58 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/package.json b/package.json index 0c79f146f..a1ccca821 100644 --- a/package.json +++ b/package.json @@ -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", |