@marko/compiler 5.39.65 → 5.39.66

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/babel.js CHANGED
@@ -8185,7 +8185,8 @@ var require_marko$3 = /* @__PURE__ */ __commonJSMin((() => {
8185
8185
  "Marko",
8186
8186
  "BlockParent",
8187
8187
  "FunctionParent",
8188
- "Scope"
8188
+ "Scope",
8189
+ "Scopable"
8189
8190
  ],
8190
8191
  builder: ["body", "params"],
8191
8192
  visitor: [
package/dist/babel.web.js CHANGED
@@ -8170,7 +8170,8 @@ var require_marko$3 = /* @__PURE__ */ __commonJSMin((() => {
8170
8170
  "Marko",
8171
8171
  "BlockParent",
8172
8172
  "FunctionParent",
8173
- "Scope"
8173
+ "Scope",
8174
+ "Scopable"
8174
8175
  ],
8175
8176
  builder: ["body", "params"],
8176
8177
  visitor: [
package/dist/types.d.ts CHANGED
@@ -1812,7 +1812,8 @@ type Standardized = ArrayExpression | AssignmentExpression | BinaryExpression |
1812
1812
  type Expression = ArrayExpression | AssignmentExpression | BinaryExpression | CallExpression | ConditionalExpression | FunctionExpression | Identifier | StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | LogicalExpression | MemberExpression | NewExpression | ObjectExpression | SequenceExpression | ParenthesizedExpression | ThisExpression | UnaryExpression | UpdateExpression | ArrowFunctionExpression | ClassExpression | ImportExpression | MetaProperty | Super | TaggedTemplateExpression | TemplateLiteral | YieldExpression | AwaitExpression | Import | BigIntLiteral | OptionalMemberExpression | OptionalCallExpression | TypeCastExpression | JSXElement | JSXFragment | BindExpression | DoExpression | RecordExpression | TupleExpression | DecimalLiteral | ModuleExpression | TopicReference | PipelineTopicExpression | PipelineBareFunction | PipelinePrimaryTopicReference | TSInstantiationExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression
1813
1813
  | MarkoParseError;
1814
1814
  type Binary = BinaryExpression | LogicalExpression;
1815
- type Scopable = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ClassExpression | ClassDeclaration | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
1815
+ type Scopable = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ClassExpression | ClassDeclaration | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock
1816
+ | MarkoTagBody;
1816
1817
  type BlockParent = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock
1817
1818
  | MarkoTagBody;
1818
1819
  type Block = BlockStatement | Program | TSModuleBlock;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marko/compiler",
3
- "version": "5.39.65",
3
+ "version": "5.39.66",
4
4
  "description": "Marko template to JS compiler.",
5
5
  "keywords": [
6
6
  "babel",
@@ -83,7 +83,7 @@
83
83
  "source-map-support": "^0.5.21"
84
84
  },
85
85
  "devDependencies": {
86
- "marko": "^5.39.3"
86
+ "marko": "^5.39.11"
87
87
  },
88
88
  "engines": {
89
89
  "node": "18 || 20 || >=22"