Skip to content

Commit

Permalink
Merge pull request #15 from bootstrap-styled/dev
Browse files Browse the repository at this point in the history
fix(dependencies): upgrade all dependencies
  • Loading branch information
kopax authored Dec 21, 2018
2 parents fba32cd + fef0bfe commit 6b69393
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,26 +132,26 @@
]
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@bootstrap-styled/documentation": "^1.2.0",
"@rollup-umd/documentation": "^1.3.0",
"@rollup-umd/documentation": "^1.3.2",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/exec": "^3.3.1",
"@semantic-release/git": "^7.0.5",
"@semantic-release/github": "^5.2.6",
"@semantic-release/git": "^7.0.6",
"@semantic-release/github": "^5.2.7",
"@semantic-release/npm": "^5.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
Expand All @@ -161,7 +161,7 @@
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-react-intl": "^3.0.1",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-styled-components": "^1.9.4",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.21",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.8.0",
Expand All @@ -180,13 +180,13 @@
"lint-staged": "^8.1.0",
"pre-commit": "^1.2.2",
"raf": "^3.4.1",
"react": "^16.6.3",
"react": "^16.7.0",
"react-intl": "^2.7.2",
"react-redux": "^6.0.0",
"react-styleguidist": "^8.0.6",
"react-test-renderer": "^16.6.3",
"react-test-renderer": "^16.7.0",
"redux": "^4.0.1",
"rollup": "^0.68.0",
"rollup": "^0.68.1",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.2.0",
Expand All @@ -198,11 +198,11 @@
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-visualizer": "^0.9.2",
"rollup-watch": "^4.3.1",
"semantic-release": "^15.13.0",
"semantic-release": "^15.13.1",
"sinon": "^7.2.2",
"styled-components": "^4.1.2",
"styled-components": "^4.1.3",
"toctoc": "^0.3.2",
"webpack": "^4.27.1"
"webpack": "^4.28.1"
},
"lint-staged": {
"*.js": [
Expand All @@ -217,12 +217,12 @@
"extract-intl:doc"
],
"dependencies": {
"@bootstrap-styled/v4": "^2.0.0",
"@bootstrap-styled/v4": "^2.0.5",
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^16.6.3",
"styled-components": "^4.1.2",
"react": "^16.7.0",
"styled-components": "^4.1.3",
"redux": "^4.0.1",
"react-redux": "^6.0.0"
},
Expand Down
1 change: 1 addition & 0 deletions src/components/Toggle/tests/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ describe('<Toggle />', () => {
it('should not have ToggleOptions if props.values is not defined', () => {
const renderedComponent = shallow(<Toggle />);
expect(renderedComponent.contains(<Option>--</Option>)).toBe(true);
console.log(renderedComponent.debug());
expect(renderedComponent.find('Option').length).toBe(1);
});
it('should have ToggleOptions if props.values is defined', () => {
Expand Down

0 comments on commit 6b69393

Please sign in to comment.