mol_dump_lib 0.0.821 → 0.0.823
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/node.d.ts +1 -1
- package/node.deps.json +1 -1
- package/node.js +6 -0
- package/node.js.map +1 -1
- package/node.mjs +6 -0
- package/node.test.js +6 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -1
- package/web.deps.json +1 -1
- package/web.js +6 -0
- package/web.js.map +1 -1
- package/web.mjs +6 -0
package/node.mjs
CHANGED
|
@@ -5361,6 +5361,12 @@ var $;
|
|
|
5361
5361
|
rules.push(`${key} ${query} {\n`);
|
|
5362
5362
|
}
|
|
5363
5363
|
}
|
|
5364
|
+
else if (key === '@starting-style') {
|
|
5365
|
+
const styles = config[key];
|
|
5366
|
+
rules.push('}\n');
|
|
5367
|
+
make_class(prefix, path, styles);
|
|
5368
|
+
rules.push(`${key} {\n`);
|
|
5369
|
+
}
|
|
5364
5370
|
else if (key[0] === '[' && key[key.length - 1] === ']') {
|
|
5365
5371
|
const attr = key.slice(1, -1);
|
|
5366
5372
|
const vals = config[key];
|
package/node.test.js
CHANGED
|
@@ -5352,6 +5352,12 @@ var $;
|
|
|
5352
5352
|
rules.push(`${key} ${query} {\n`);
|
|
5353
5353
|
}
|
|
5354
5354
|
}
|
|
5355
|
+
else if (key === '@starting-style') {
|
|
5356
|
+
const styles = config[key];
|
|
5357
|
+
rules.push('}\n');
|
|
5358
|
+
make_class(prefix, path, styles);
|
|
5359
|
+
rules.push(`${key} {\n`);
|
|
5360
|
+
}
|
|
5355
5361
|
else if (key[0] === '[' && key[key.length - 1] === ']') {
|
|
5356
5362
|
const attr = key.slice(1, -1);
|
|
5357
5363
|
const vals = config[key];
|