Skip to content

Commit

Permalink
chore(deps): remove unneeded dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mathisonian committed Apr 15, 2022
1 parent 389b1a8 commit c166faa
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 297 deletions.
3 changes: 1 addition & 2 deletions packages/idyll-document/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@
"react-test-renderer": "^17.0.2",
"rimraf": "^2.6.2",
"rollup": "^2.70.0",
"rollup-plugin-jsx": "^1.0.3",
"rollup-plugin-node-builtins": "^2.1.2"
"rollup-plugin-jsx": "^1.0.3"
},
"peerDependencies": {
"react": "16 || 17 || 18",
Expand Down
7 changes: 2 additions & 5 deletions packages/idyll-document/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import commonjs from '@rollup/plugin-commonjs';
import replace from '@rollup/plugin-replace';
import { babel } from '@rollup/plugin-babel';
import builtins from 'rollup-plugin-node-builtins';

const pkg = require('./package.json');
const dependencies = [
Expand Down Expand Up @@ -33,8 +32,7 @@ export default [
}),
// jsx( { factory: "React.createElement" } ),
// nodeResolve(),
commonjs(),
builtins()
commonjs()
]
},
{
Expand Down Expand Up @@ -69,8 +67,7 @@ export default [
}),
// jsx( { factory: "React.createElement" } ),
// nodeResolve(),
commonjs(),
builtins()
commonjs()
]
}
];
Loading

0 comments on commit c166faa

Please sign in to comment.