Skip to content

Commit 46129ba

Browse files
committed
updated dep
added test case for webpack-contrib#164
1 parent baab9ef commit 46129ba

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"lodash.camelcase": "^3.0.1",
1212
"postcss": "^5.0.6",
1313
"postcss-modules-extract-imports": "1.0.0-beta2",
14-
"postcss-modules-local-by-default": "1.0.0-beta2",
14+
"postcss-modules-local-by-default": "^1.0.0",
1515
"postcss-modules-scope": "1.0.0-beta2",
1616
"postcss-modules-values": "^1.1.0",
1717
"source-list-map": "^0.1.4"

test/urlTest.js

+3
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,7 @@ describe("url", function() {
4747
test("url in string", "a { content: \"do not use url(path)\"; } b { content: 'do not \"use\" url(path)'; }", [
4848
[1, "a { content: \"do not use url(path)\"; } b { content: 'do not \"use\" url(path)'; }", ""]
4949
]);
50+
test("keyframe background img", "@keyframes anim { background: green url('img.png') xyz }", [
51+
[1, "@keyframes anim { background: green url({./img.png}) xyz }", ""]
52+
]);
5053
});

0 commit comments

Comments
 (0)