Skip to content

Commit

Permalink
Upgrade packages
Browse files Browse the repository at this point in the history
  • Loading branch information
psychobolt committed Mar 27, 2019
1 parent b4017c0 commit cfbbee6
Show file tree
Hide file tree
Showing 3 changed files with 2,104 additions and 1,609 deletions.
8 changes: 4 additions & 4 deletions .storybook/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const path = require('path');

module.exports = (baseConfig, env, defaultConfig) => ({
...defaultConfig,
module.exports = ({ config }) => ({
...config,
module: {
...defaultConfig.module,
...config.module,
rules: [
// Temp fix for issue: https://github.com/storybooks/storybook/issues/3346
...defaultConfig.module.rules.filter(rule => !(
...config.module.rules.filter(rule => !(
(rule.use && rule.use.length && rule.use.find(({ loader }) => loader === 'babel-loader'))
)),
{
Expand Down
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"dist": "npm run build && lerna publish"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
Expand All @@ -37,18 +37,18 @@
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.1.13",
"@storybook/addon-actions": "^5.0.5",
"@storybook/addon-console": "^1.1.0",
"@storybook/addon-links": "4.1.13",
"@storybook/addon-notes": "4.1.13",
"@storybook/react": "4.1.13",
"@storybook/addon-links": "^5.0.5",
"@storybook/addon-notes": "^5.0.5",
"@storybook/react": "^5.0.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "^24.1.0",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-lodash": "^3.3.4",
Expand All @@ -58,52 +58,52 @@
"codecov": "^3.2.0",
"concurrently": "^4.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.15.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-react-app": "^3.0.7",
"eslint-config-react-app": "^3.0.8",
"eslint-import-resolver-babel-module": "5.0.1",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "7.12.4",
"flow-bin": "^0.94.0",
"flow-bin": "^0.95.1",
"flow-typed": "2.5.1",
"jest": "^24.1.0",
"jest": "^24.5.0",
"jest-styled-components": "^6.3.1",
"lerna": "^3.13.1",
"minimatch": "^3.0.4",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"react": "^16.8.3",
"react": "^16.8.5",
"react-cache": "^2.0.0-alpha.1",
"react-dom": "^16.8.3",
"react-dom": "^16.8.5",
"recompose": "^0.30.0",
"rimraf": "^2.6.3",
"rollup": "1.4.1",
"rollup": "1.7.3",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-uglify": "^6.0.2",
"source-map-loader": "^0.2.4",
"storybook-readme": "^4.0.5",
"styled-components": "^4.1.3",
"storybook-readme": "^5.0.1",
"styled-components": "^4.2.0",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2",
"stylelint-processor-styled-components": "^1.6.0",
"uglify-es": "^3.3.9"
},
"dependencies": {
"react-is": "^16.8.3"
"react-is": "^16.8.5"
},
"peerDependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.2",
"styled-components": "^4.1.3"
"react": "^16.8.5",
"react-dom": "^16.8.5",
"styled-components": "^4.2.0"
}
}
Loading

0 comments on commit cfbbee6

Please sign in to comment.