@marko/compiler 5.39.62 → 5.39.63

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/babel-utils.d.ts +3 -0
  2. package/package.json +2 -1
package/babel-utils.d.ts CHANGED
@@ -143,7 +143,10 @@ export interface Tag {
143
143
  controlFlow?: boolean;
144
144
  ignoreAttributes?: boolean;
145
145
  relaxRequireCommas?: boolean;
146
+ statement?: boolean;
147
+ preserveWhitespace?: boolean;
146
148
  text?: boolean;
149
+ html?: boolean;
147
150
  };
148
151
  }
149
152
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marko/compiler",
3
- "version": "5.39.62",
3
+ "version": "5.39.63",
4
4
  "description": "Marko template to JS compiler.",
5
5
  "keywords": [
6
6
  "babel",
@@ -38,6 +38,7 @@
38
38
  },
39
39
  "./modules": "./modules.js",
40
40
  "./internal/babel": {
41
+ "types": "./internal/babel/index.ts",
41
42
  "browser": "./dist/babel.web.js",
42
43
  "default": "./dist/babel.js"
43
44
  },