@ripple-ts/language-server 0.2.214 → 0.2.216

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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @ripple-ts/language-server
2
2
 
3
+ ## 0.2.216
4
+
5
+ ### Patch Changes
6
+
7
+ - [#764](https://github.com/Ripple-TS/ripple/pull/764)
8
+ [`95ea864`](https://github.com/Ripple-TS/ripple/commit/95ea8645b2cb27e2610a4ace4c8fb238c92d441a)
9
+ Thanks [@leonidaz](https://github.com/leonidaz)! - Fixes syntax color
10
+ highlighting for `pending`
11
+
12
+ - Updated dependencies
13
+ [[`95ea864`](https://github.com/Ripple-TS/ripple/commit/95ea8645b2cb27e2610a4ace4c8fb238c92d441a)]:
14
+ - @ripple-ts/typescript-plugin@0.2.216
15
+
16
+ ## 0.2.215
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies []:
21
+ - @ripple-ts/typescript-plugin@0.2.215
22
+
3
23
  ## 0.2.214
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ripple-ts/language-server",
3
- "version": "0.2.214",
3
+ "version": "0.2.216",
4
4
  "description": "Language Server Protocol implementation for Ripple",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -19,10 +19,10 @@
19
19
  "volar-service-typescript": "0.0.68",
20
20
  "vscode-languageserver-textdocument": "^1.0.12",
21
21
  "vscode-uri": "^3.1.0",
22
- "@ripple-ts/typescript-plugin": "0.2.214"
22
+ "@ripple-ts/typescript-plugin": "0.2.216"
23
23
  },
24
24
  "devDependencies": {
25
- "ripple": "0.2.214"
25
+ "ripple": "0.2.216"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "typescript": "^5.9.2"
package/tsconfig.json CHANGED
@@ -11,5 +11,6 @@
11
11
  "resolveJsonModule": true,
12
12
  "types": []
13
13
  },
14
- "include": ["src/**/*.js", "index.js", "bin/**/*.js"]
14
+ "include": ["src/**/*.js", "index.js", "bin/**/*.js"],
15
+ "exclude": ["node_modules", "dist"]
15
16
  }