Skip to content

Commit

Permalink
Merge pull request #19 from artisin/pr-#18
Browse files Browse the repository at this point in the history
update(dependencies): update dependencies as well as the needed update → #18
  • Loading branch information
fetchTe authored Mar 27, 2019
2 parents c98936f + 6a43032 commit ba48222
Show file tree
Hide file tree
Showing 4 changed files with 2,218 additions and 1,782 deletions.
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ module.name_mapper='^util\/\(.*\)$' -> '<PROJECT_ROOT>/lib/util/\1'
# @docs: https://flow.org/en/docs/config/version/
################################################################################
[version]
^0.83.0
^0.95.1
7 changes: 5 additions & 2 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ const babelConfig = function babelConfig (api) {
modules: 'umd',
shippedProposals: true,
useBuiltIns: 'usage',
corejs: 3,
targets: {
browsers: [
'>0.2%',
'last 1 version',
'not dead',
'not ie <= 11',
'not op_mini all',
Expand All @@ -61,8 +63,9 @@ const babelConfig = function babelConfig (api) {
modules: false,
shippedProposals: true,
useBuiltIns: 'usage',
corejs: 3,
targets: {
node: '10.7.0',
node: '11.3.0',
}
}],
]
Expand Down Expand Up @@ -201,7 +204,7 @@ const babelConfig = function babelConfig (api) {
['@babel/plugin-transform-runtime', {
helpers: true,
regenerator: true,
corejs: 2,
corejs: 3,
useESModules: false,
}],
];
Expand Down
104 changes: 53 additions & 51 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"author": "te schultz",
"main": "dist/flow-is-helpers.web.js",
"module": "dist/flow-is-helpers.js",
"sideEffects": false,
"keywords": [
"flow",
"flow-helpers",
Expand Down Expand Up @@ -51,76 +52,77 @@
},
"dependencies": {
"@babel/runtime": "7.4.2",
"core-js": "3.0.0",
"lodash": "4.17.11"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "7.1.2",
"@babel/plugin-proposal-function-bind": "7.0.0",
"@babel/plugin-proposal-json-strings": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-proposal-optional-catch-binding": "7.0.0",
"@babel/plugin-proposal-optional-chaining": "7.0.0",
"@babel/plugin-proposal-pipeline-operator": "7.0.0",
"@babel/plugin-syntax-async-generators": "7.0.0",
"@babel/plugin-syntax-do-expressions": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-syntax-flow": "7.0.0",
"@babel/plugin-syntax-import-meta": "7.0.0",
"@babel/plugin-syntax-object-rest-spread": "7.0.0",
"@babel/plugin-syntax-optional-catch-binding": "7.0.0",
"@babel/plugin-transform-async-to-generator": "7.1.0",
"@babel/plugin-transform-classes": "7.1.0",
"@babel/plugin-transform-destructuring": "7.1.3",
"@babel/plugin-transform-flow-comments": "7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-function-name": "7.1.0",
"@babel/plugin-transform-modules-commonjs": "7.1.0",
"@babel/plugin-transform-parameters": "7.1.0",
"@babel/plugin-transform-property-mutators": "7.1.0",
"@babel/plugin-transform-regenerator": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/plugin-transform-shorthand-properties": "7.0.0",
"@babel/plugin-transform-template-literals": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/register": "7.0.0",
"@babel/runtime-corejs2": "7.1.2",
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.0",
"@babel/plugin-proposal-optional-catch-binding": "7.2.0",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/plugin-proposal-pipeline-operator": "7.3.2",
"@babel/plugin-syntax-async-generators": "7.2.0",
"@babel/plugin-syntax-do-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-flow": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/plugin-syntax-object-rest-spread": "7.2.0",
"@babel/plugin-syntax-optional-catch-binding": "7.2.0",
"@babel/plugin-transform-async-to-generator": "7.4.0",
"@babel/plugin-transform-classes": "7.4.0",
"@babel/plugin-transform-destructuring": "7.4.0",
"@babel/plugin-transform-flow-comments": "7.4.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.0",
"@babel/plugin-transform-function-name": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.4.0",
"@babel/plugin-transform-parameters": "7.4.0",
"@babel/plugin-transform-property-mutators": "7.2.0",
"@babel/plugin-transform-regenerator": "7.4.0",
"@babel/plugin-transform-runtime": "7.4.0",
"@babel/plugin-transform-shorthand-properties": "7.2.0",
"@babel/plugin-transform-template-literals": "7.2.0",
"@babel/preset-env": "7.4.2",
"@babel/register": "7.4.0",
"@babel/runtime-corejs3": "7.4.2",
"app-root-dir": "1.0.2",
"auto-changelog": "^1.12.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"babel-loader": "8.0.5",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"babel-preset-minify": "0.5.0",
"chai": "4.2.0",
"colur": "1.0.0",
"commitizen": "3.0.2",
"commitizen": "3.0.7",
"cz-customizable-te": "6.2.0",
"del": "3.0.0",
"del": "4.0.0",
"env-cmd": "8.0.2",
"eslint": "5.7.0",
"eslint-plugin-babel": "5.2.1",
"eslint-plugin-flowtype": "3.0.0",
"eslint-plugin-node": "7.0.1",
"flow-bin": "0.83.0",
"eslint": "5.15.3",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-flowtype": "3.4.2",
"eslint-plugin-node": "8.0.1",
"flow-bin": "0.95.1",
"flow-typed": "2.5.1",
"flow-webpack-plugin": "1.2.0",
"glob-all": "3.1.0",
"hard-source-webpack-plugin": "^0.12.0",
"license-webpack-plugin": "^2.0.2",
"hard-source-webpack-plugin": "^0.13.1",
"license-webpack-plugin": "^2.1.1",
"lodash-webpack-plugin": "^0.11.5",
"mocha": "5.2.0",
"progress-bar-webpack-plugin": "1.11.0",
"redrun": "7.0.2",
"mocha": "6.0.2",
"progress-bar-webpack-plugin": "1.12.1",
"redrun": "7.1.5",
"release-it": "^10.3.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"upath": "1.1.0",
"webpack": "4.20.2",
"webpack-cli": "3.1.2",
"uglifyjs-webpack-plugin": "^2.1.2",
"upath": "1.1.2",
"webpack": "4.29.6",
"webpack-cli": "3.3.0",
"webpack-node-externals": "1.7.2"
},
"config": {
Expand Down
Loading

0 comments on commit ba48222

Please sign in to comment.