summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2020-02-23 18:13:30 -0800
committerAlexander Early <alexander.early@gmail.com>2020-02-23 18:13:30 -0800
commit6919fa0258599bf354224ffb17f9d4ff11e0dc49 (patch)
tree51e964693d0c8422169e18bf5618c56c7feead18 /support
parenta7b030dfd2f2d6bc7b8e3e9998a39e7aaa13e829 (diff)
downloadasync-6919fa0258599bf354224ffb17f9d4ff11e0dc49.tar.gz
remove browserify configuration. Closes #1653
Diffstat (limited to 'support')
-rwxr-xr-xsupport/sync-cjs-package.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/support/sync-cjs-package.js b/support/sync-cjs-package.js
index 15a451c..dff4472 100755
--- a/support/sync-cjs-package.js
+++ b/support/sync-cjs-package.js
@@ -3,9 +3,5 @@
var fs = require('fs');
var json = JSON.parse(fs.readFileSync(__dirname + "/../package.json"), "utf8");
json.module = 'dist/async.mjs'
-// mark this as an ES6 module for browserify
-json.browserify = {
- transform: [["babelify", { presets: ["@babel/preset-env"] }]]
-}
process.stdout.write(JSON.stringify(json, null, 2));