Skip to content

Commit c44f9ee

Browse files
author
Dimitri Kopriwa
committed
fix(dependencies): upgrade all dependencies
1 parent 8aefc78 commit c44f9ee

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -132,26 +132,26 @@
132132
]
133133
},
134134
"devDependencies": {
135-
"@babel/cli": "^7.2.0",
135+
"@babel/cli": "^7.2.3",
136136
"@babel/core": "^7.2.2",
137137
"@babel/plugin-external-helpers": "^7.2.0",
138-
"@babel/plugin-proposal-class-properties": "^7.2.1",
139-
"@babel/plugin-proposal-decorators": "^7.2.2",
138+
"@babel/plugin-proposal-class-properties": "^7.2.3",
139+
"@babel/plugin-proposal-decorators": "^7.2.3",
140140
"@babel/plugin-proposal-json-strings": "^7.2.0",
141141
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
142142
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
143143
"@babel/plugin-syntax-import-meta": "^7.2.0",
144144
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
145145
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
146146
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
147-
"@babel/preset-env": "^7.2.0",
147+
"@babel/preset-env": "^7.2.3",
148148
"@babel/preset-react": "^7.0.0",
149149
"@bootstrap-styled/documentation": "^1.2.0",
150-
"@rollup-umd/documentation": "^1.3.0",
150+
"@rollup-umd/documentation": "^1.3.2",
151151
"@semantic-release/changelog": "^3.0.1",
152152
"@semantic-release/exec": "^3.3.1",
153-
"@semantic-release/git": "^7.0.5",
154-
"@semantic-release/github": "^5.2.6",
153+
"@semantic-release/git": "^7.0.6",
154+
"@semantic-release/github": "^5.2.7",
155155
"@semantic-release/npm": "^5.1.2",
156156
"babel-core": "^7.0.0-bridge.0",
157157
"babel-eslint": "^10.0.1",
@@ -161,7 +161,7 @@
161161
"babel-plugin-dynamic-import-node": "^2.2.0",
162162
"babel-plugin-react-intl": "^3.0.1",
163163
"babel-plugin-react-transform": "^3.0.0",
164-
"babel-plugin-styled-components": "^1.9.4",
164+
"babel-plugin-styled-components": "^1.10.0",
165165
"babel-plugin-transform-react-remove-prop-types": "^0.4.21",
166166
"cz-conventional-changelog": "^2.1.0",
167167
"enzyme": "^3.8.0",
@@ -180,13 +180,13 @@
180180
"lint-staged": "^8.1.0",
181181
"pre-commit": "^1.2.2",
182182
"raf": "^3.4.1",
183-
"react": "^16.6.3",
183+
"react": "^16.7.0",
184184
"react-intl": "^2.7.2",
185185
"react-redux": "^6.0.0",
186186
"react-styleguidist": "^8.0.6",
187-
"react-test-renderer": "^16.6.3",
187+
"react-test-renderer": "^16.7.0",
188188
"redux": "^4.0.1",
189-
"rollup": "^0.68.0",
189+
"rollup": "^0.68.1",
190190
"rollup-plugin-babel": "^4.1.0",
191191
"rollup-plugin-cleanup": "^3.0.0",
192192
"rollup-plugin-commonjs": "^9.2.0",
@@ -198,11 +198,11 @@
198198
"rollup-plugin-terser": "^3.0.0",
199199
"rollup-plugin-visualizer": "^0.9.2",
200200
"rollup-watch": "^4.3.1",
201-
"semantic-release": "^15.13.0",
201+
"semantic-release": "^15.13.1",
202202
"sinon": "^7.2.2",
203-
"styled-components": "^4.1.2",
203+
"styled-components": "^4.1.3",
204204
"toctoc": "^0.3.2",
205-
"webpack": "^4.27.1"
205+
"webpack": "^4.28.1"
206206
},
207207
"lint-staged": {
208208
"*.js": [
@@ -217,12 +217,12 @@
217217
"extract-intl:doc"
218218
],
219219
"dependencies": {
220-
"@bootstrap-styled/v4": "^1.3.0",
220+
"@bootstrap-styled/v4": "^2.0.5",
221221
"prop-types": "^15.6.2"
222222
},
223223
"peerDependencies": {
224-
"react": "^16.6.3",
225-
"styled-components": "^4.1.2",
224+
"react": "^16.7.0",
225+
"styled-components": "^4.1.3",
226226
"redux": "^4.0.1",
227227
"react-redux": "^6.0.0"
228228
},

src/components/Toggle/tests/index.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ describe('<Toggle />', () => {
3131
it('should not have ToggleOptions if props.values is not defined', () => {
3232
const renderedComponent = shallow(<Toggle />);
3333
expect(renderedComponent.contains(<Option>--</Option>)).toBe(true);
34+
console.log(renderedComponent.debug());
3435
expect(renderedComponent.find('Option').length).toBe(1);
3536
});
3637
it('should have ToggleOptions if props.values is defined', () => {

0 commit comments

Comments
 (0)