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