@cilix/lightjs 0.0.9 → 0.0.10
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/core.js +3 -0
- package/package.json +1 -1
package/core.js
CHANGED
|
@@ -998,6 +998,9 @@ module.exports = (config, fs, path) => {
|
|
|
998
998
|
if (accept("ident") || accept("as")) {
|
|
999
999
|
// allow ':' in attribute names
|
|
1000
1000
|
while (accept(':')) {
|
|
1001
|
+
if (key === 'bind') {
|
|
1002
|
+
includeRuntime = true;
|
|
1003
|
+
}
|
|
1001
1004
|
key += ':'
|
|
1002
1005
|
key += tok.data;
|
|
1003
1006
|
expect("ident");
|