@gi-tcg/gts-language-server 0.3.0 → 0.3.1

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.
@@ -6,7 +6,7 @@ import {
6
6
  loadTsdkByUrl
7
7
  } from "@volar/language-server/browser.js";
8
8
  import { createGtsLanguagePlugin } from "@gi-tcg/gts-language-plugin";
9
- import { path } from "@gi-tcg/gts-transpiler";
9
+ import path from "path-browserify-esm";
10
10
 
11
11
  // packages/language-server/src/diagnostics.ts
12
12
  import {
@@ -0,0 +1,5 @@
1
+ // packages/language-server/src/web_worker.ts
2
+ var web_worker_default = undefined;
3
+ export {
4
+ web_worker_default as default
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gi-tcg/gts-language-server",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "repository": "https://github.com/piovium/gts.git",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -24,10 +24,11 @@
24
24
  ],
25
25
  "scripts": {},
26
26
  "dependencies": {
27
- "@gi-tcg/gts-language-plugin": "0.3.0",
28
- "@gi-tcg/gts-transpiler": "0.3.0",
27
+ "@gi-tcg/gts-language-plugin": "0.3.1",
28
+ "@gi-tcg/gts-transpiler": "0.3.1",
29
29
  "@volar/language-server": "~2.4.0",
30
30
  "@zenfs/core": "^2.5.0",
31
+ "path-browserify-esm": "^1.0.6",
31
32
  "volar-service-typescript": "volar-2.4",
32
33
  "vscode-uri": "^3.0.8"
33
34
  },
package/src/browser.ts CHANGED
@@ -9,7 +9,8 @@ import {
9
9
  type InitializeParams,
10
10
  } from "@volar/language-server/browser.js";
11
11
  import { createGtsLanguagePlugin } from "@gi-tcg/gts-language-plugin";
12
- import { path, type GtsConfig } from "@gi-tcg/gts-transpiler";
12
+ import path from "path-browserify-esm";
13
+ import { type GtsConfig } from "@gi-tcg/gts-transpiler";
13
14
  import { createDiagnosticsPlugin } from "./diagnostics";
14
15
  import { createTypeScriptServices } from "./typescript";
15
16
  import { createCompletionPlugin } from "./completion";