Skip to content

Commit

Permalink
Merge pull request #23 from gzuidhof/manzt-rollup-upgrade
Browse files Browse the repository at this point in the history
upgrade rollup and move to maintained plugins
  • Loading branch information
manzt authored Feb 6, 2020
2 parents 5c6387c + 62e5574 commit 0906c76
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 47 deletions.
146 changes: 106 additions & 40 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/express": "^4.17.2",
"@types/jest": "^23.3.2",
"@types/node": "^10.11.0",
Expand All @@ -54,10 +57,7 @@
"puppeteer": "^2.0.0",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.2",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup": "^1.31.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.24.3",
"serve-static": "^1.14.1",
Expand Down
6 changes: 3 additions & 3 deletions rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
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 json from '@rollup/plugin-json';
import sourceMaps from 'rollup-plugin-sourcemaps';
import camelCase from 'lodash.camelcase';
import typescript from 'rollup-plugin-typescript2';
import json from 'rollup-plugin-json';

const pkg = require('./package.json');

Expand Down

0 comments on commit 0906c76

Please sign in to comment.