css-module-sync 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/css_parser.js +11 -6
package/package.json
CHANGED
package/src/css_parser.js
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
export function parse(input) {
|
|
3
3
|
let i = 0;
|
|
4
4
|
const n = input.length;
|
|
5
|
-
|
|
6
5
|
const root = { type: "block", selector: null, children: [], comments: [] };
|
|
7
6
|
let pending = [];
|
|
8
7
|
|
|
@@ -19,15 +18,21 @@ export function parse(input) {
|
|
|
19
18
|
};
|
|
20
19
|
|
|
21
20
|
const read_until = stops => {
|
|
22
|
-
let out = "", q = null, esc = false;
|
|
21
|
+
let out = "", q = null, esc = false, cmt = false, p = 0;
|
|
23
22
|
while (i < n) {
|
|
24
23
|
const c = input[i];
|
|
25
24
|
if (esc) { out += c; esc = false; i++; continue; }
|
|
26
25
|
if (c === "\\") { out += c; esc = true; i++; continue; }
|
|
26
|
+
if (!cmt && !q && c === "/" && input[i + 1] === "*") { cmt = true; out += "/*"; i += 2; continue; }
|
|
27
|
+
if (cmt && c === "*" && input[i + 1] === "/") { cmt = false; out += "*/"; i += 2; continue; }
|
|
28
|
+
if (cmt) { out += c; i++; continue; }
|
|
27
29
|
if (q) { if (c === q) q = null; out += c; i++; continue; }
|
|
28
30
|
if (c === "'" || c === `"`) { q = c; out += c; i++; continue; }
|
|
29
|
-
if (
|
|
30
|
-
|
|
31
|
+
if (c === "(") p++;
|
|
32
|
+
if (c === ")") if (p > 0) p--;
|
|
33
|
+
if (p === 0 && stops.includes(c)) break;
|
|
34
|
+
out += c;
|
|
35
|
+
i++;
|
|
31
36
|
}
|
|
32
37
|
return out;
|
|
33
38
|
};
|
|
@@ -35,7 +40,7 @@ export function parse(input) {
|
|
|
35
40
|
const parse_block = selector => {
|
|
36
41
|
const node = { type: "block", selector, children: [], comments: pending };
|
|
37
42
|
pending = [];
|
|
38
|
-
i++;
|
|
43
|
+
i++;
|
|
39
44
|
while (i < n) {
|
|
40
45
|
skip_ws();
|
|
41
46
|
const cmt = read_comment();
|
|
@@ -74,4 +79,4 @@ export function parse(input) {
|
|
|
74
79
|
|
|
75
80
|
if (pending.length) root.comments = pending;
|
|
76
81
|
return root;
|
|
77
|
-
}
|
|
82
|
+
}
|