Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ericgio committed Feb 25, 2020
1 parent 656735e commit b56b6a7
Show file tree
Hide file tree
Showing 4 changed files with 1,717 additions and 1,769 deletions.
1 change: 0 additions & 1 deletion example/src/components/Markdown.react.js
Expand Up @@ -11,7 +11,6 @@ marked.setOptions({
gfm: true,
highlight: (code) => Prism.highlight(code, Prism.languages.markdown),
pedantic: false,
sanitize: true,
smartLists: true,
smartypants: false,
tables: true,
Expand Down
20 changes: 10 additions & 10 deletions package.json
Expand Up @@ -66,6 +66,9 @@
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-dev-expression": "^0.2.1",
Expand All @@ -80,17 +83,17 @@
"eslint": "^6.0.1",
"eslint-config-ericgio": "^5.0.0",
"eslint-plugin-flowtype": "^4.3.0",
"flow-bin": "^0.110.1",
"flow-bin": "^0.110.0",
"gh-pages": "^2.0.1",
"husky": "^3.0.0",
"husky": "^4.2.3",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.1.0",
"jest": "^24.0.0",
"json-loader": "^0.5.4",
"lint-staged": "^9.2.0",
"lint-staged": "^10.0.8",
"lodash": "^4.17.11",
"marked": "^0.7.0",
"marked": "^0.8.0",
"node-sass": "^4.5.3",
"raw-loader": "^3.0.0",
"raw-loader": "^4.0.0",
"react": "^16.5.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.5.0",
Expand All @@ -101,10 +104,7 @@
"rimraf": "^3.0.0",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.1.1",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-size-snapshot": "^0.11.0",
"rollup-plugin-terser": "^5.1.2",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
Expand Down
6 changes: 3 additions & 3 deletions rollup.config.js
@@ -1,9 +1,9 @@
/* eslint-disable sort-keys */

const babel = require('rollup-plugin-babel');
const commonjs = require('rollup-plugin-commonjs');
const nodeResolve = require('rollup-plugin-node-resolve');
const replace = require('rollup-plugin-replace');
const commonjs = require('@rollup/plugin-commonjs');
const nodeResolve = require('@rollup/plugin-node-resolve');
const replace = require('@rollup/plugin-replace');
const { sizeSnapshot } = require('rollup-plugin-size-snapshot');
const { terser } = require('rollup-plugin-terser');

Expand Down

0 comments on commit b56b6a7

Please sign in to comment.