@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.
Files changed (2) hide show
  1. package/core.js +3 -0
  2. 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");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cilix/lightjs",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "A new kind of JavaScript framework",
5
5
  "main": "index.js",
6
6
  "scripts": {