mol_dump_lib 0.0.820 → 0.0.822
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.js
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];
|