Skip to content
This repository was archived by the owner on Sep 29, 2024. It is now read-only.

Commit ec41a10

Browse files
kaisermannjonathantneal
authored andcommittedOct 2, 2018
Update dependencies
1 parent 2c81353 commit ec41a10

4 files changed

+53
-9
lines changed
 

‎package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,25 @@
2525
"node": ">=4.0.0"
2626
},
2727
"dependencies": {
28-
"postcss": "^6.0.19",
28+
"postcss": "^6.0.23",
2929
"postcss-advanced-variables": "^2.3.3",
3030
"postcss-atroot": "^0.1.3",
31-
"postcss-extend-rule": "^1.1.0",
31+
"postcss-extend-rule": "^2.0.0",
3232
"postcss-nested": "^3.0.0",
33-
"postcss-preset-env": "^3.2.2",
33+
"postcss-preset-env": "^5.1.0",
3434
"postcss-property-lookup": "^2.0.0"
3535
},
3636
"devDependencies": {
37-
"babel-core": "^6.26.0",
38-
"babel-eslint": "^8.2.2",
39-
"babel-preset-env": "^1.6.1",
37+
"babel-core": "^6.26.3",
38+
"babel-eslint": "^8.2.3",
39+
"babel-preset-env": "^1.7.0",
4040
"echint": "^4.0.1",
41-
"eslint": "^4.18.1",
41+
"eslint": "^4.19.1",
4242
"eslint-config-dev": "^2.0.0",
4343
"postcss-tape": "^2.2.0",
4444
"pre-commit": "^1.2.2",
45-
"rollup": "^0.56.3",
46-
"rollup-plugin-babel": "^3.0.3"
45+
"rollup": "^0.61.1",
46+
"rollup-plugin-babel": "^3.0.4"
4747
},
4848
"eslintConfig": {
4949
"extends": "dev",

‎test/basic.expect.css

+12
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,15 @@
1111
.menu-link:link,.menu-link:visited {
1212
background-color: rgba(5, 110, 240, 0.5);
1313
}
14+
15+
.menu-link:-webkit-any-link {
16+
background-color: rgba(5, 110, 240, 0.5);
17+
}
18+
19+
.menu-link:-moz-any-link {
20+
background-color: rgba(5, 110, 240, 0.5);
21+
}
22+
23+
.menu-link:any-link {
24+
background-color: rgba(5, 110, 240, 0.5);
25+
}

‎test/basic.stage.expect.css

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
height: calc(1 * 200px);
99
}
1010

11+
.menu-link:-webkit-any-link {
12+
background-color: color-mod(#056ef0 alpha(50%));
13+
}
14+
15+
.menu-link:-moz-any-link {
16+
background-color: color-mod(#056ef0 alpha(50%));
17+
}
18+
1119
.menu-link:any-link {
1220
background-color: color-mod(#056ef0 alpha(50%));
1321
}

‎test/basic.variables.expect.css

+24
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,27 @@
1515
.menu-link:link,.menu-link:visited {
1616
background-color: #056ef0;
1717
}
18+
19+
:root {
20+
background-color: rgba(5, 110, 240, 0.02);
21+
}
22+
23+
.menu-link:-webkit-any-link {
24+
background-color: #056ef0;
25+
}
26+
27+
:root {
28+
background-color: rgba(5, 110, 240, 0.02);
29+
}
30+
31+
.menu-link:-moz-any-link {
32+
background-color: #056ef0;
33+
}
34+
35+
:root {
36+
background-color: rgba(5, 110, 240, 0.02);
37+
}
38+
39+
.menu-link:any-link {
40+
background-color: #056ef0;
41+
}

0 commit comments

Comments
 (0)
This repository has been archived.