Skip to content

Commit c7aad5c

Browse files
authored
Minor dependency updates (FormidableLabs#701)
1 parent f76d3bc commit c7aad5c

File tree

3 files changed

+1940
-1815
lines changed

3 files changed

+1940
-1815
lines changed

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
"deep-object-diff": "^1.1.0",
5050
"emotion": "^8.0.8",
5151
"history": "^4.7.2",
52-
"lodash": "^4.17.11",
52+
"lodash": "^4.17.15",
5353
"marksy": "^6.1.0",
5454
"normalize.css": "^8.0.1",
55-
"prismjs": "1.15.0",
55+
"prismjs": "^1.17.1",
5656
"react-emotion": "^8.0.8",
5757
"react-live": "^1.6",
5858
"react-redux": "^5.1.1",
@@ -81,7 +81,7 @@
8181
"babel-loader": "^8.0.5",
8282
"babel-plugin-emotion": "^9.0.1",
8383
"builder": "^4.0.0",
84-
"css-loader": "^2.1.0",
84+
"css-loader": "^3.1.0",
8585
"enzyme": "^3.8.0",
8686
"enzyme-adapter-react-16": "^1.7.1",
8787
"enzyme-to-json": "3.3.5",
@@ -105,7 +105,7 @@
105105
"redbox-react": "1.6.0",
106106
"rimraf": "^2.6.3",
107107
"style-loader": "^0.23.1",
108-
"surge": "^0.20.1",
108+
"surge": "^0.21.3",
109109
"tslint": "^5.12.1",
110110
"typescript": "^3.2.2",
111111
"url-loader": "^1.1.2",
@@ -115,7 +115,7 @@
115115
},
116116
"resolutions": {
117117
"babel-core": "^7.0.0-0",
118-
"source-map": "0.6.1"
118+
"source-map": "^0.5.0"
119119
},
120120
"jest": {
121121
"moduleNameMapper": {

src/utils/base.test.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,7 @@ describe('bgImage additional values', () => {
196196

197197
it('should assign bgDarken value to backgroundImage opacity', () => {
198198
const bgDarkenValue = 0.5;
199-
const backgroundImageValue = `linear-gradient( rgba(0, 0, 0, ${bgDarkenValue}), rgba(0, 0, 0, ${bgDarkenValue}) ), url(${
200-
_this.props.bgImage
201-
})`;
199+
const backgroundImageValue = `linear-gradient( rgba(0, 0, 0, ${bgDarkenValue}), rgba(0, 0, 0, ${bgDarkenValue}) ), url(${_this.props.bgImage})`;
202200
_this.props.bgDarken = bgDarkenValue;
203201
const styles = generateStyles();
204202
expect(styles.backgroundImage).toEqual(backgroundImageValue);

0 commit comments

Comments
 (0)