@esportsplus/template 0.33.2 → 0.34.0
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/build/compiler/codegen.js +1 -1
- package/build/compiler/index.js +1 -1
- package/build/compiler/plugins/tsc.d.ts +1 -1
- package/build/compiler/plugins/tsc.js +1 -1
- package/build/compiler/plugins/vite.js +1 -1
- package/build/constants.js +1 -1
- package/package.json +3 -3
- package/src/compiler/codegen.ts +1 -1
- package/src/compiler/index.ts +1 -1
- package/src/compiler/plugins/tsc.ts +1 -1
- package/src/compiler/plugins/vite.ts +1 -1
- package/src/constants.ts +1 -1
- package/tsconfig.json +1 -1
- package/build/compiler/plugins/index.d.ts +0 -2
- package/build/compiler/plugins/index.js +0 -2
- package/src/compiler/plugins/index.ts +0 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ts } from '@esportsplus/typescript';
|
|
2
|
-
import { ast, code as c, uid } from '@esportsplus/typescript/
|
|
2
|
+
import { ast, code as c, uid } from '@esportsplus/typescript/compiler';
|
|
3
3
|
import { analyzeExpression, generateAttributeBinding, generateSpreadBindings } from './type-analyzer.js';
|
|
4
4
|
import { COMPILER_ENTRYPOINT, COMPILER_NAMESPACE, COMPILER_TYPES, PACKAGE, PACKAGE_COMPILER } from '../constants.js';
|
|
5
5
|
import parser from './parser.js';
|
package/build/compiler/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { code as c } from '@esportsplus/typescript/
|
|
1
|
+
import { code as c } from '@esportsplus/typescript/compiler';
|
|
2
2
|
import { addImport, generateCode, generateReactiveInlining, needsArraySlotImport } from './codegen.js';
|
|
3
3
|
import { COMPILER_ENTRYPOINT, COMPILER_ENTRYPOINT_REACTIVITY } from '../constants.js';
|
|
4
4
|
import { findHtmlTemplates, findReactiveCalls } from './ts-parser.js';
|
package/build/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"author": "ICJR",
|
|
3
3
|
"dependencies": {
|
|
4
4
|
"@esportsplus/queue": "^0.2.0",
|
|
5
|
-
"@esportsplus/reactivity": "^0.
|
|
5
|
+
"@esportsplus/reactivity": "^0.26.0",
|
|
6
6
|
"@esportsplus/utilities": "^0.27.2",
|
|
7
7
|
"serve": "^14.2.5"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@esportsplus/typescript": "^0.
|
|
10
|
+
"@esportsplus/typescript": "^0.21.0",
|
|
11
11
|
"@types/node": "^25.0.3",
|
|
12
12
|
"vite": "^7.3.0",
|
|
13
13
|
"vite-tsconfig-paths": "^6.0.3"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"type": "module",
|
|
43
43
|
"types": "./build/index.d.ts",
|
|
44
|
-
"version": "0.
|
|
44
|
+
"version": "0.34.0",
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "tsc",
|
|
47
47
|
"build:test": "vite build --config test/vite.config.ts",
|
package/src/compiler/codegen.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ts } from '@esportsplus/typescript';
|
|
2
|
-
import { ast, code as c, uid, type Replacement } from '@esportsplus/typescript/
|
|
2
|
+
import { ast, code as c, uid, type Replacement } from '@esportsplus/typescript/compiler';
|
|
3
3
|
import type { ReactiveCallInfo, TemplateInfo } from './ts-parser';
|
|
4
4
|
import { analyzeExpression, generateAttributeBinding, generateSpreadBindings } from './type-analyzer';
|
|
5
5
|
import {
|
package/src/compiler/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { code as c } from '@esportsplus/typescript/
|
|
1
|
+
import { code as c } from '@esportsplus/typescript/compiler';
|
|
2
2
|
import { addImport, generateCode, generateReactiveInlining, needsArraySlotImport } from './codegen';
|
|
3
3
|
import { COMPILER_ENTRYPOINT, COMPILER_ENTRYPOINT_REACTIVITY } from '../constants';
|
|
4
4
|
import { findHtmlTemplates, findReactiveCalls } from './ts-parser';
|
package/src/constants.ts
CHANGED
package/tsconfig.json
CHANGED