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.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];