Skip to content

Commit 93e749e

Browse files
committed
sketched out a simple readme
1 parent c55c29e commit 93e749e

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# CSS Modules: Extract Imports
2+
3+
Transforms:
4+
5+
```css
6+
:local(.continueButton) {
7+
extends: button from "library/button.css";
8+
background: red;
9+
}
10+
```
11+
12+
into:
13+
14+
```css
15+
:import("library/button.css") {
16+
button: __tmp_487387465fczSDGHSABb;
17+
}
18+
:local(.continueButton) {
19+
extends: __tmp_487387465fczSDGHSABb;
20+
background: red;
21+
}
22+
```
23+
24+
## Development
25+
26+
```
27+
npm install
28+
npm run watch
29+
npm test
30+
```

0 commit comments

Comments
 (0)