@kusto/monaco-kusto 10.0.7 → 10.0.9
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 +3 -3
- package/package.json +3 -3
- package/release/dev/Kusto.Language.Bridge.min.js +1 -1
- package/release/dev/kusto.javascript.client.min.js +1 -1
- package/release/dev/kustoMode.js +2 -2
- package/release/dev/kustoWorker.js +45 -31
- package/release/dev/{main-ed17dbfe.js → main-14fb70f8.js} +2 -2
- package/release/dev/monaco.contribution.js +2 -2
- package/release/dev/{schema-747e1e00.js → schema-0a4f9ccd.js} +2 -2
- package/release/esm/kusto.worker.js +29 -13
- package/release/esm/languageService/kustoLanguageService.js +23 -12
- package/release/esm/languageService/schema.d.ts +87 -87
- package/release/esm/{schema-6fcbaf0d.js → schema-fd27df3d.js} +1 -1
- package/release/esm/util.d.ts +3 -0
- package/release/esm/util.js +1 -0
- package/release/min/Kusto.Language.Bridge.min.js +1 -1
- package/release/min/kusto.javascript.client.min.js +1 -1
- package/release/min/kustoMode.js +2 -2
- package/release/min/kustoWorker.js +4 -4
- package/release/min/{main-0d710df4.js → main-8d4424b0.js} +2 -2
- package/release/min/monaco.contribution.js +2 -2
- package/release/min/{schema-37352c11.js → schema-47d31727.js} +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Kusto language plugin for the Monaco Editor. It provides the following features
|
|
|
13
13
|
|
|
14
14
|
## Usage
|
|
15
15
|
|
|
16
|
-
`npm install @kusto/monaco-
|
|
16
|
+
`npm install @kusto/monaco-kusto` or `yarn add @kusto/monaco-kusto`
|
|
17
17
|
|
|
18
18
|
### Package content
|
|
19
19
|
|
|
@@ -60,8 +60,8 @@ There are 2 APIs to set a Kusto schema:
|
|
|
60
60
|
|
|
61
61
|
### Setting up a dev environment
|
|
62
62
|
|
|
63
|
-
1. Install Node.js
|
|
64
|
-
2.
|
|
63
|
+
1. Install Node.js 20 https://nodejs.org/
|
|
64
|
+
2. Run `corepack enable` to make the `yarn` package manager available (https://yarnpkg.com/getting-started/install)
|
|
65
65
|
3. Clone repo and run `yarn` in repo root
|
|
66
66
|
4. Run `yarn watch` from /package and a http-server will automatically open the index.html
|
|
67
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kusto/monaco-kusto",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.9",
|
|
4
4
|
"description": "CSL, KQL plugin for the Monaco Editor",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Microsoft"
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"vscode-languageserver-textdocument": "1.0.8"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@kusto/language-service": "0.0.
|
|
64
|
-
"@kusto/language-service-next": "11.4.
|
|
63
|
+
"@kusto/language-service": "0.0.268",
|
|
64
|
+
"@kusto/language-service-next": "11.4.291",
|
|
65
65
|
"lodash-es": "^4.17.21",
|
|
66
66
|
"vscode-languageserver-types": "^3.17.4",
|
|
67
67
|
"xregexp": "^5.1.1"
|