Skip to content

Commit

Permalink
Upgrade direct and transitive dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Jan 5, 2022
1 parent e4cb9b4 commit 07fbab1
Show file tree
Hide file tree
Showing 4 changed files with 2,030 additions and 2,989 deletions.
1 change: 1 addition & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[ignore]
.*/node_modules/@babel/[A-Z-a-z-]*/.*
.*/node_modules/babel[A-Z-a-z-]*/.*
.*/node_modules/resolve/.*

[untyped]
.*/node_modules/react-is/.*
Expand Down
33 changes: 16 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,29 +52,28 @@
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-flow-strip-types": "^7.13.0",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/preset-env": "^7.13.10",
"@babel/preset-flow": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/core": "^7.16.7",
"@babel/plugin-transform-flow-strip-types": "^7.16.7",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"babel-plugin-closure-elimination": "^1.3.2",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"codecov": "^3.8.1",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"codecov": "^3.8.3",
"flow-bin": "0.122.0",
"husky-v4": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.41.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.63.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2"
}
Expand Down
9 changes: 4 additions & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import resolve from '@rollup/plugin-node-resolve'
import buble from '@rollup/plugin-buble'
import babel from '@rollup/plugin-babel'
import { terser } from 'rollup-plugin-terser'
import compiler from '@ampproject/rollup-plugin-closure-compiler'

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

Expand Down Expand Up @@ -71,9 +70,6 @@ const plugins = [
]
]
}),
compiler({
compilation_level: 'SIMPLE_OPTIMIZATIONS'
}),
terser({
warnings: true,
ecma: 5,
Expand All @@ -92,7 +88,10 @@ const plugins = [
conditionals: false,
join_vars: false
},
mangle: false,
mangle: {
module: true,
keep_fnames: true
},
output: {
beautify: true,
braces: true,
Expand Down
Loading

0 comments on commit 07fbab1

Please sign in to comment.