File: expected.css

package info (click to toggle)
node-postcss-modules-extract-imports 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 456 kB
  • sloc: javascript: 310; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
:import("./b.css") {
  i__imported_b_1: b;
}

:import("./c.css") {
  i__imported_c_0: c;
}

.a {
  composes: i__imported_c_0;
  color: #bebebe;
}

.b {
  /* `b` should be after `c` */
  composes: i__imported_b_1;
  composes: i__imported_c_0;
  color: #aaa;
}