@aihu/compiler 1.3.3 → 1.3.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/README.md +30 -18
- package/dist/codemods/macro-simplification.d.ts +24 -0
- package/dist/codemods/macro-simplification.d.ts.map +1 -0
- package/dist/codemods/macro-simplification.js +65 -0
- package/dist/codemods/macro-simplification.js.map +1 -0
- package/dist/codemods/state-wrapper.d.ts +78 -0
- package/dist/codemods/state-wrapper.d.ts.map +1 -0
- package/dist/codemods/state-wrapper.js +25 -0
- package/dist/codemods/state-wrapper.js.map +1 -0
- package/dist/codemods/template-grammar-v2.d.ts +40 -0
- package/dist/codemods/template-grammar-v2.d.ts.map +1 -0
- package/dist/codemods/template-grammar-v2.js +3 -0
- package/dist/codemods/template-grammar-v2.js.map +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +23 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aihu/compiler",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
".": {
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"import": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./codemods/macro-simplification": {
|
|
15
|
+
"types": "./dist/codemods/macro-simplification.d.ts",
|
|
16
|
+
"import": "./dist/codemods/macro-simplification.js"
|
|
17
|
+
},
|
|
18
|
+
"./codemods/state-wrapper": {
|
|
19
|
+
"types": "./dist/codemods/state-wrapper.d.ts",
|
|
20
|
+
"import": "./dist/codemods/state-wrapper.js"
|
|
21
|
+
},
|
|
22
|
+
"./codemods/template-grammar-v2": {
|
|
23
|
+
"types": "./dist/codemods/template-grammar-v2.d.ts",
|
|
24
|
+
"import": "./dist/codemods/template-grammar-v2.js"
|
|
13
25
|
}
|
|
14
26
|
},
|
|
15
27
|
"bin": {
|
|
@@ -31,16 +43,16 @@
|
|
|
31
43
|
"codemod:template-syntax": "bun js/codemods/template-syntax/run-migration.ts"
|
|
32
44
|
},
|
|
33
45
|
"optionalDependencies": {
|
|
34
|
-
"@aihu/compiler-darwin-arm64": "1.3.
|
|
35
|
-
"@aihu/compiler-darwin-x64": "1.3.
|
|
36
|
-
"@aihu/compiler-linux-x64-gnu": "1.3.
|
|
37
|
-
"@aihu/compiler-linux-arm64-gnu": "1.3.
|
|
38
|
-
"@aihu/compiler-win32-x64-msvc": "1.3.
|
|
39
|
-
"@aihu/compiler-native-darwin-arm64": "1.3.
|
|
40
|
-
"@aihu/compiler-native-darwin-x64": "1.3.
|
|
41
|
-
"@aihu/compiler-native-linux-x64-gnu": "1.3.
|
|
42
|
-
"@aihu/compiler-native-linux-arm64-gnu": "1.3.
|
|
43
|
-
"@aihu/compiler-native-win32-x64-msvc": "1.3.
|
|
46
|
+
"@aihu/compiler-darwin-arm64": "1.3.4",
|
|
47
|
+
"@aihu/compiler-darwin-x64": "1.3.4",
|
|
48
|
+
"@aihu/compiler-linux-x64-gnu": "1.3.4",
|
|
49
|
+
"@aihu/compiler-linux-arm64-gnu": "1.3.4",
|
|
50
|
+
"@aihu/compiler-win32-x64-msvc": "1.3.4",
|
|
51
|
+
"@aihu/compiler-native-darwin-arm64": "1.3.4",
|
|
52
|
+
"@aihu/compiler-native-darwin-x64": "1.3.4",
|
|
53
|
+
"@aihu/compiler-native-linux-x64-gnu": "1.3.4",
|
|
54
|
+
"@aihu/compiler-native-linux-arm64-gnu": "1.3.4",
|
|
55
|
+
"@aihu/compiler-native-win32-x64-msvc": "1.3.4"
|
|
44
56
|
},
|
|
45
57
|
"peerDependencies": {
|
|
46
58
|
"vite": ">=5.0.0",
|