Skip to content

Commit

Permalink
chore: remove unused rollup plugin
Browse files Browse the repository at this point in the history
This plugin is not needed anymore, since the
`@socket.io/component-emitter` package now includes an ESM version.
  • Loading branch information
darrachequesne committed May 31, 2024
1 parent 4aec72a commit 3f66478
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 127 deletions.
122 changes: 0 additions & 122 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
"@babel/preset-env": "^7.12.7",
"@fails-components/webtransport": "^0.1.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@sinonjs/fake-timers": "^7.1.2",
"@types/debug": "^4.1.12",
Expand Down
2 changes: 0 additions & 2 deletions support/rollup.config.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const { nodeResolve } = require("@rollup/plugin-node-resolve");
const commonjs = require("@rollup/plugin-commonjs");
const { terser } = require("rollup-plugin-terser");

const version = require("../package.json").version;
Expand All @@ -22,6 +21,5 @@ module.exports = {
nodeResolve({
browser: true,
}),
commonjs(),
],
};
2 changes: 0 additions & 2 deletions support/rollup.config.umd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const { nodeResolve } = require("@rollup/plugin-node-resolve");
const commonjs = require("@rollup/plugin-commonjs");
const { babel } = require("@rollup/plugin-babel");
const { terser } = require("rollup-plugin-terser");

Expand Down Expand Up @@ -33,7 +32,6 @@ module.exports = {
nodeResolve({
browser: true,
}),
commonjs(),
babel({
babelHelpers: "bundled",
presets: [["@babel/env"]],
Expand Down

0 comments on commit 3f66478

Please sign in to comment.