@aeriajs/compiler 0.0.54 → 0.0.55

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/dist/parser.js CHANGED
@@ -975,7 +975,7 @@ const parse = (tokens) => {
975
975
  break;
976
976
  }
977
977
  case 'requires': {
978
- const { value } = parseArray([token_js_1.TokenType.Identifier]);
978
+ const { value } = parseArrayBlock();
979
979
  baseSlots[keyword] = value;
980
980
  break;
981
981
  }
package/dist/parser.mjs CHANGED
@@ -917,7 +917,7 @@ export const parse = (tokens) => {
917
917
  break;
918
918
  }
919
919
  case "requires": {
920
- const { value } = parseArray([TokenType.Identifier]);
920
+ const { value } = parseArrayBlock();
921
921
  baseSlots[keyword] = value;
922
922
  break;
923
923
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aeriajs/compiler",
3
- "version": "0.0.54",
3
+ "version": "0.0.55",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -21,8 +21,8 @@
21
21
  "dist"
22
22
  ],
23
23
  "peerDependencies": {
24
- "@aeriajs/common": "^0.0.152",
25
- "@aeriajs/types": "^0.0.130"
24
+ "@aeriajs/common": "^0.0.153",
25
+ "@aeriajs/types": "^0.0.131"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@aeriajs/common": "link:../common",