Skip to content

Commit 86e6d30

Browse files
committed
Update extends to composes, keep commented out
1 parent 1366638 commit 86e6d30

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"homepage": "https://github.com/css-modules/browserify-demo",
2525
"devDependencies": {
2626
"browserify": "^10.2.3",
27-
"css-modulesify": "^0.1.2",
27+
"css-modulesify": "git://github.com/css-modules/css-modulesify#c0bfe993de60ba63cd7215956d67104ada74ec27",
2828
"gh-pages": "git://github.com/markdalgleish/gh-pages#cli-message",
2929
"http-server": "^0.8.0",
3030
"hyperscript": "^1.4.6",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
.root {
2-
/*extends: box from "../../../shared/styles/layout.css";*/
2+
/*composes: box from "../../../shared/styles/layout.css";*/
33
border-color: red;
44
}
55

66
.text {
7-
/*extends: heading from "../../../shared/styles/typography.css";*/
7+
/*composes: heading from "../../../shared/styles/typography.css";*/
88
color: red;
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
.root {
2-
/*extends: box from "../../../shared/styles/layout.css";*/
2+
/*composes: box from "../../../shared/styles/layout.css";*/
33
border-color: blue;
44
}
55

66
.text {
7-
/*extends: heading from "../../../shared/styles/typography.css";*/
7+
/*composes: heading from "../../../shared/styles/typography.css";*/
88
color: blue;
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.root {
2-
/*extends: box from "../../shared/styles/layout.css";*/
2+
/*composes: box from "../../shared/styles/layout.css";*/
33
border-style: dotted;
44
border-color: green;
55
}
66

77
.text {
8-
/*extends: heading from "../../shared/styles/typography.css";*/
8+
/*composes: heading from "../../shared/styles/typography.css";*/
99
font-weight: 200;
1010
color: green;
1111
}

src/components/5-ScopedAnimations/ScopedAnimations.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
}
44

55
.ball {
6-
/*extends: bounce from "../../shared/styles/animations.css";*/
6+
/*composes: bounce from "../../shared/styles/animations.css";*/
77
width: 40px;
88
height: 40px;
99
border-radius: 20px;

0 commit comments

Comments
 (0)