malinajs 0.7.7 → 0.7.8

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.
Files changed (2) hide show
  1. package/malina.js +2 -2
  2. package/package.json +1 -1
package/malina.js CHANGED
@@ -5050,7 +5050,7 @@
5050
5050
  childName: slot.name,
5051
5051
  parentName: parentSlot.elArg || 'default'
5052
5052
  }, (ctx, n) => {
5053
- ctx.writeLine(`slots.${n.childName} = $option.slots?.${n.parentName};`);
5053
+ ctx.write(true, `${n.childName}: $option.slots?.${n.parentName}`);
5054
5054
  }));
5055
5055
  return;
5056
5056
  }
@@ -6865,7 +6865,7 @@
6865
6865
  });
6866
6866
  }
6867
6867
 
6868
- const version = '0.7.7';
6868
+ const version = '0.7.8';
6869
6869
 
6870
6870
 
6871
6871
  async function compile(source, config = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "malinajs",
3
- "version": "0.7.7",
3
+ "version": "0.7.8",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "build": "npm run build_runtime && rollup -c",