Skip to content

Commit

Permalink
browserify: remove plugins: es3ify, bundle-collapser
Browse files Browse the repository at this point in the history
These plugins are unmaintained, and TODO: no longer of value?
  • Loading branch information
alxndrsn committed Jan 8, 2024
1 parent 154440f commit 60bd734
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 1 addition & 3 deletions bin/build-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@ function doBrowserify(pkgName, filepath, opts, exclude) {
path.dirname(filepath) + '/' + path.basename(filepath));
});
} else {
bundler = browserify(addPath(pkgName, filepath), opts)
.transform('es3ify')
.plugin('bundle-collapser/plugin');
bundler = browserify(addPath(pkgName, filepath), opts);
}

if (exclude) {
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,13 @@
"browserify": "16.4.0",
"browserify-incremental": "3.1.1",
"builtin-modules": "3.1.0",
"bundle-collapser": "1.3.0",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"change-case": "4.0.1",
"child-process-promise": "2.2.1",
"cssmin": "0.4.3",
"denodeify": "1.2.1",
"derequire": "2.1.1",
"es3ify": "0.2.2",
"eslint": "8.7.0",
"express": "4.17.0",
"express-pouchdb": "4.2.0",
Expand Down

0 comments on commit 60bd734

Please sign in to comment.