Skip to content

Commit

Permalink
Merge pull request #57 from reed-jones/update-to-namespaced-deps
Browse files Browse the repository at this point in the history
moved rollup-plugin-* to @rollup/plugin-*
  • Loading branch information
Rich-Harris authored Jan 15, 2020
2 parents e9215be + dc03ba7 commit 88a2d55
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 69 deletions.
118 changes: 55 additions & 63 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"ms": "^2.0.0"
},
"devDependencies": {
"rollup": "^1.20.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.1.0"
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"rollup": "^1.29.0"
},
"scripts": {
"build": "rollup -c",
Expand Down
6 changes: 3 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import pkg from './package.json';

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

0 comments on commit 88a2d55

Please sign in to comment.