vscode-languageserver-protocol 3.17.2-next.3 → 3.17.2-next.4

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.
@@ -1687,7 +1687,7 @@ export declare namespace WatchKind {
1687
1687
  */
1688
1688
  const Delete: 4;
1689
1689
  }
1690
- export declare type WatchKind = uinteger;
1690
+ export declare type WatchKind = 1 | 2 | 3 | 4 | 5 | 6 | 7;
1691
1691
  /**
1692
1692
  * The publish diagnostic client capabilities.
1693
1693
  */
@@ -177,7 +177,8 @@
177
177
  "name": {
178
178
  "enum": [
179
179
  "string",
180
- "integer"
180
+ "integer",
181
+ "uinteger"
181
182
  ],
182
183
  "type": "string"
183
184
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vscode-languageserver-protocol",
3
3
  "description": "VSCode Language Server Protocol implementation",
4
- "version": "3.17.2-next.3",
4
+ "version": "3.17.2-next.4",
5
5
  "author": "Microsoft Corporation",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -22,7 +22,7 @@
22
22
  "vscode-languageserver-types": "3.17.2-next.2"
23
23
  },
24
24
  "scripts": {
25
- "prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile && npm test",
25
+ "prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile && npm test && cd .. && npm run generate:metaModel && npm run generate:metaModelSchema && cd ./protocol",
26
26
  "postpublish": "node ../build/npm/post-publish.js",
27
27
  "preversion": "npm test",
28
28
  "compile": "node ../build/bin/tsc -b ./tsconfig.json",