mol_dump_lib 0.0.821 → 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/web.js
CHANGED
|
@@ -4201,6 +4201,12 @@ var $;
|
|
|
4201
4201
|
rules.push(`${key} ${query} {\n`);
|
|
4202
4202
|
}
|
|
4203
4203
|
}
|
|
4204
|
+
else if (key === '@starting-style') {
|
|
4205
|
+
const styles = config[key];
|
|
4206
|
+
rules.push('}\n');
|
|
4207
|
+
make_class(prefix, path, styles);
|
|
4208
|
+
rules.push(`${key} {\n`);
|
|
4209
|
+
}
|
|
4204
4210
|
else if (key[0] === '[' && key[key.length - 1] === ']') {
|
|
4205
4211
|
const attr = key.slice(1, -1);
|
|
4206
4212
|
const vals = config[key];
|