marko 6.0.0-next.3.72 → 6.0.0-next.3.74
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/debug/html.js +30 -7
- package/dist/debug/html.mjs +30 -7
- package/dist/html/writer.d.ts +1 -0
- package/dist/html.js +22 -9
- package/dist/html.mjs +22 -9
- package/dist/translator/index.js +2096 -2092
- package/dist/translator/visitors/program/index.d.ts +1 -2
- package/package.json +2 -2
@@ -1,6 +1,5 @@
|
|
1
1
|
import { types as t } from "@marko/compiler";
|
2
2
|
import { type Binding } from "../../util/references";
|
3
|
-
export declare let currentProgramPath: t.NodePath<t.Program>;
|
4
3
|
export declare let cleanIdentifier: t.Identifier;
|
5
4
|
export declare let scopeIdentifier: t.Identifier;
|
6
5
|
export declare function isScopeIdentifier(node: t.Node): node is t.Identifier;
|
@@ -26,7 +25,7 @@ declare module "@marko/compiler/dist/types" {
|
|
26
25
|
declare const _default: {
|
27
26
|
migrate: {
|
28
27
|
enter(this: unknown, program: t.NodePath<t.Program>): void;
|
29
|
-
exit(this: unknown): void;
|
28
|
+
exit(this: unknown, program: t.NodePath<t.Program>): void;
|
30
29
|
};
|
31
30
|
analyze: {
|
32
31
|
enter(this: unknown, program: t.NodePath<t.Program>): void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "marko",
|
3
|
-
"version": "6.0.0-next.3.
|
3
|
+
"version": "6.0.0-next.3.74",
|
4
4
|
"description": "Optimized runtime for Marko templates.",
|
5
5
|
"keywords": [
|
6
6
|
"api",
|
@@ -48,7 +48,7 @@
|
|
48
48
|
"build": "node -r ~ts ./scripts/bundle.ts"
|
49
49
|
},
|
50
50
|
"dependencies": {
|
51
|
-
"@marko/compiler": "^5.39.
|
51
|
+
"@marko/compiler": "^5.39.15",
|
52
52
|
"csstype": "^3.1.3",
|
53
53
|
"magic-string": "^0.30.17"
|
54
54
|
},
|