We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c55c29e commit 93e749eCopy full SHA for 93e749e
1 file changed
README.md
@@ -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
15
+:import("library/button.css") {
16
+ button: __tmp_487387465fczSDGHSABb;
17
18
19
+ extends: __tmp_487387465fczSDGHSABb;
20
21
22
23
24
+## Development
25
26
27
+npm install
28
+npm run watch
29
+npm test
30
0 commit comments