@marko/compiler 5.35.4 → 5.35.5
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-plugin/index.js +1 -1
- package/dist/types.d.ts +1 -0
- package/package.json +29 -29
|
@@ -399,6 +399,6 @@ function isMarkoOutput(output) {
|
|
|
399
399
|
function finalizeMeta(meta) {
|
|
400
400
|
meta.watchFiles = [...new Set(meta.watchFiles)];
|
|
401
401
|
if (meta.analyzedTags) {
|
|
402
|
-
meta.analyzedTags = [...
|
|
402
|
+
meta.analyzedTags = [...meta.analyzedTags];
|
|
403
403
|
}
|
|
404
404
|
}
|
package/dist/types.d.ts
CHANGED
|
@@ -1607,6 +1607,7 @@ export interface TSImportType extends BaseNode {
|
|
|
1607
1607
|
argument: StringLiteral;
|
|
1608
1608
|
qualifier: TSEntityName | null;
|
|
1609
1609
|
typeParameters: TSTypeParameterInstantiation | null;
|
|
1610
|
+
options: Expression | null;
|
|
1610
1611
|
}
|
|
1611
1612
|
|
|
1612
1613
|
export interface TSImportEqualsDeclaration extends BaseNode {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marko/compiler",
|
|
3
|
-
"version": "5.35.
|
|
3
|
+
"version": "5.35.5",
|
|
4
4
|
"description": "Marko template to JS compiler.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"babel",
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
},
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
|
21
|
-
"main": "dist/index.js",
|
|
22
21
|
"exports": {
|
|
23
22
|
".": {
|
|
24
23
|
"types": "./index.d.ts",
|
|
@@ -39,26 +38,7 @@
|
|
|
39
38
|
"./package.json": "./package.json",
|
|
40
39
|
"./*": "./*"
|
|
41
40
|
},
|
|
42
|
-
"
|
|
43
|
-
".": {
|
|
44
|
-
"types": "./index.d.ts",
|
|
45
|
-
"default": "./src/index.js"
|
|
46
|
-
},
|
|
47
|
-
"./config": {
|
|
48
|
-
"types": "./config.d.ts",
|
|
49
|
-
"default": "./src/config.js"
|
|
50
|
-
},
|
|
51
|
-
"./register": {
|
|
52
|
-
"types": "./register.d.ts",
|
|
53
|
-
"default": "./src/register.js"
|
|
54
|
-
},
|
|
55
|
-
"./modules": "./modules.js",
|
|
56
|
-
"./babel-types": "./babel-types.d.ts",
|
|
57
|
-
"./dist/types": "./dist/types.d.ts",
|
|
58
|
-
"./package": "./package.json",
|
|
59
|
-
"./package.json": "./package.json",
|
|
60
|
-
"./*": "./*"
|
|
61
|
-
},
|
|
41
|
+
"main": "dist/index.js",
|
|
62
42
|
"types": "index.d.ts",
|
|
63
43
|
"files": [
|
|
64
44
|
"dist",
|
|
@@ -76,17 +56,17 @@
|
|
|
76
56
|
},
|
|
77
57
|
"dependencies": {
|
|
78
58
|
"@babel/code-frame": "^7.23.5",
|
|
79
|
-
"@babel/core": "^7.
|
|
59
|
+
"@babel/core": "^7.24.0",
|
|
80
60
|
"@babel/generator": "^7.23.6",
|
|
81
|
-
"@babel/parser": "^7.
|
|
61
|
+
"@babel/parser": "^7.24.0",
|
|
82
62
|
"@babel/plugin-syntax-typescript": "^7.23.3",
|
|
83
63
|
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
|
|
84
64
|
"@babel/plugin-transform-typescript": "^7.23.6",
|
|
85
|
-
"@babel/runtime": "^7.
|
|
86
|
-
"@babel/traverse": "^7.
|
|
87
|
-
"@babel/types": "^7.
|
|
65
|
+
"@babel/runtime": "^7.24.0",
|
|
66
|
+
"@babel/traverse": "^7.24.0",
|
|
67
|
+
"@babel/types": "^7.24.0",
|
|
88
68
|
"@luxass/strip-json-comments": "^1.2.0",
|
|
89
|
-
"@marko/babel-utils": "^6.4.
|
|
69
|
+
"@marko/babel-utils": "^6.4.2",
|
|
90
70
|
"complain": "^1.6.0",
|
|
91
71
|
"he": "^1.2.0",
|
|
92
72
|
"htmljs-parser": "^5.5.2",
|
|
@@ -100,10 +80,30 @@
|
|
|
100
80
|
"source-map-support": "^0.5.21"
|
|
101
81
|
},
|
|
102
82
|
"devDependencies": {
|
|
103
|
-
"@marko/translator-default": "^5.32.
|
|
83
|
+
"@marko/translator-default": "^5.32.6"
|
|
104
84
|
},
|
|
105
85
|
"publishConfig": {
|
|
106
86
|
"access": "public"
|
|
107
87
|
},
|
|
88
|
+
"exports:override": {
|
|
89
|
+
".": {
|
|
90
|
+
"types": "./index.d.ts",
|
|
91
|
+
"default": "./src/index.js"
|
|
92
|
+
},
|
|
93
|
+
"./config": {
|
|
94
|
+
"types": "./config.d.ts",
|
|
95
|
+
"default": "./src/config.js"
|
|
96
|
+
},
|
|
97
|
+
"./register": {
|
|
98
|
+
"types": "./register.d.ts",
|
|
99
|
+
"default": "./src/register.js"
|
|
100
|
+
},
|
|
101
|
+
"./modules": "./modules.js",
|
|
102
|
+
"./babel-types": "./babel-types.d.ts",
|
|
103
|
+
"./dist/types": "./dist/types.d.ts",
|
|
104
|
+
"./package": "./package.json",
|
|
105
|
+
"./package.json": "./package.json",
|
|
106
|
+
"./*": "./*"
|
|
107
|
+
},
|
|
108
108
|
"main:override": "src/index.js"
|
|
109
109
|
}
|