Skip to content

Commit 88a2d55

Browse files
authored
Merge pull request #57 from reed-jones/update-to-namespaced-deps
moved rollup-plugin-* to @rollup/plugin-*
2 parents e9215be + dc03ba7 commit 88a2d55

File tree

3 files changed

+61
-69
lines changed

3 files changed

+61
-69
lines changed

package-lock.json

+55-63
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"ms": "^2.0.0"
99
},
1010
"devDependencies": {
11-
"rollup": "^1.20.0",
12-
"rollup-plugin-commonjs": "^10.0.0",
13-
"rollup-plugin-node-resolve": "^5.1.0"
11+
"@rollup/plugin-commonjs": "^11.0.1",
12+
"@rollup/plugin-node-resolve": "^7.0.0",
13+
"rollup": "^1.29.0"
1414
},
1515
"scripts": {
1616
"build": "rollup -c",

rollup.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import resolve from 'rollup-plugin-node-resolve';
2-
import commonjs from 'rollup-plugin-commonjs';
1+
import resolve from '@rollup/plugin-node-resolve';
2+
import commonjs from '@rollup/plugin-commonjs';
33
import pkg from './package.json';
44

55
export default [
@@ -21,7 +21,7 @@ export default [
2121
// (We could have three entries in the configuration array
2222
// instead of two, but it's quicker to generate multiple
2323
// builds from a single configuration where possible, using
24-
// an array for the `output` option, where we can specify
24+
// an array for the `output` option, where we can specify
2525
// `file` and `format` for each target)
2626
{
2727
input: 'src/main.js',

0 commit comments

Comments
 (0)