@marko/compiler 5.39.38 → 5.39.39

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.
@@ -223,6 +223,7 @@ function getMarkoFile(code, fileOpts, markoOpts) {
223
223
  };
224
224
 
225
225
  (0, _parser.parseMarko)(file);
226
+ file.path.scope.crawl(); // Initialize bindings.
226
227
 
227
228
  if (isSource) {
228
229
  if (markoOpts.stripTypes) {
@@ -231,8 +232,6 @@ function getMarkoFile(code, fileOpts, markoOpts) {
231
232
  return file;
232
233
  }
233
234
 
234
- file.path.scope.crawl(); // Initialize bindings.
235
-
236
235
  const rootMigrators = [];
237
236
  for (const id in taglibLookup.taglibsById) {
238
237
  for (const migrator of taglibLookup.taglibsById[id].migrators) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marko/compiler",
3
- "version": "5.39.38",
3
+ "version": "5.39.39",
4
4
  "description": "Marko template to JS compiler.",
5
5
  "keywords": [
6
6
  "babel",
@@ -87,7 +87,7 @@
87
87
  "source-map-support": "^0.5.21"
88
88
  },
89
89
  "devDependencies": {
90
- "marko": "^5.37.58"
90
+ "marko": "^5.37.59"
91
91
  },
92
92
  "engines": {
93
93
  "node": "18 || 20 || >=22"