@flint.fyi/vue-language 0.2.0 → 0.3.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.
Files changed (2) hide show
  1. package/dist/index.d.mts +2 -1
  2. package/package.json +8 -8
package/dist/index.d.mts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { RootNode } from "@vue/compiler-dom";
2
2
  import { VueVirtualCode, tsCodegen } from "@vue/language-core";
3
+ import { VolarLanguage } from "@flint.fyi/volar-language";
3
4
  import { Mapper } from "@volar/language-core";
4
5
 
5
6
  //#region src/language.d.ts
@@ -12,6 +13,6 @@ interface VueServices {
12
13
  };
13
14
  }
14
15
  type VueCodegen = typeof tsCodegen extends WeakMap<WeakKey, infer V> ? V : never;
15
- declare const vueLanguage: import("@flint.fyi/volar-language").Language<import("@flint.fyi/typescript-language").TypeScriptNodesByName, Partial<VueServices> & import("@flint.fyi/typescript-language").TypeScriptFileServices>;
16
+ declare const vueLanguage: VolarLanguage<VueServices>;
16
17
  //#endregion
17
18
  export { vueLanguage };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flint.fyi/vue-language",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "[Experimental] Vue.js language for Flint.",
5
5
  "homepage": "https://flint.fyi",
6
6
  "repository": {
@@ -26,19 +26,19 @@
26
26
  "@vue/compiler-dom": "^3.5.0",
27
27
  "@vue/language-core": "3.2.1",
28
28
  "typescript": "^5.9.0 || ^6.0.0",
29
- "@flint.fyi/ts-patch": "^0.15.0",
30
- "@flint.fyi/utils": "^0.15.0",
31
- "@flint.fyi/volar-language": "^0.2.0",
32
- "@flint.fyi/typescript-language": "^0.19.0"
29
+ "@flint.fyi/ts-patch": "^0.16.0",
30
+ "@flint.fyi/typescript-language": "^0.20.0",
31
+ "@flint.fyi/utils": "^0.16.0",
32
+ "@flint.fyi/volar-language": "^0.3.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "tsdown": "0.22.3",
36
36
  "vitest": "4.1.0",
37
- "@flint.fyi/core": "^0.24.0",
38
- "@flint.fyi/build": "^0.1.0"
37
+ "@flint.fyi/build": "^0.1.0",
38
+ "@flint.fyi/core": "^0.25.0"
39
39
  },
40
40
  "engines": {
41
- "node": ">=24.0.0"
41
+ "node": ">=26.1.0"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"