malinajs 0.6.63 → 0.6.64
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/compile.js +3 -0
- package/malina.js +4 -1
- package/package.json +1 -1
package/compile.js
CHANGED
package/malina.js
CHANGED
|
@@ -1011,6 +1011,9 @@
|
|
|
1011
1011
|
assert(parent.type === 'fragment', 'Fragment error: /fragment');
|
|
1012
1012
|
return;
|
|
1013
1013
|
} else throw 'Error binding: ' + bind.value;
|
|
1014
|
+
} else {
|
|
1015
|
+
addText(readBinding().raw);
|
|
1016
|
+
continue;
|
|
1014
1017
|
}
|
|
1015
1018
|
}
|
|
1016
1019
|
|
|
@@ -5931,7 +5934,7 @@
|
|
|
5931
5934
|
return {event, fn};
|
|
5932
5935
|
}
|
|
5933
5936
|
|
|
5934
|
-
const version = '0.6.
|
|
5937
|
+
const version = '0.6.64';
|
|
5935
5938
|
|
|
5936
5939
|
|
|
5937
5940
|
async function compile(source, config = {}) {
|