Skip to content

Commit

Permalink
Update rollup plugin libraries (#397)
Browse files Browse the repository at this point in the history
* Update rollup plugin libraries

* Small PR template tweak
  • Loading branch information
rkuykendall committed Feb 17, 2020
1 parent df5af84 commit bebefbe
Show file tree
Hide file tree
Showing 4 changed files with 264 additions and 56 deletions.
5 changes: 3 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ _( what is the feature, or what is it this is PR fixing? )_

- [ ] Title is human readable, as it will be included directly in `CHANGELOG.md` when we do a release
- [ ] If this is a new user-facing feature, documentation has been added to `API.md`
- [ ] Any `dist/` changes have not been committed. Tests run directly on the source code and all dist changes are
computed and committed during release.
- [ ] Any `dist/` changes have not been committed.

Tests run directly on the source code and all dist changes are computed and committed during Formsy release.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/enzyme": "^3.10.3",
"@types/jest": "^25.1.1",
"@types/lodash.isplainobject": "^4.0.6",
Expand Down Expand Up @@ -107,8 +109,6 @@
"react-dom": "^16.2.0 || ^16.0.0",
"rollup": "^1.19.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"sinon": "^8.0.2",
"typescript": "^3.5.3"
Expand Down
4 changes: 2 additions & 2 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 babel from 'rollup-plugin-babel';
import babelrc from 'babelrc-rollup';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
Expand Down
Loading

0 comments on commit bebefbe

Please sign in to comment.