@kusto/monaco-kusto 7.8.0 → 7.9.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.
- package/README.md +1 -1
- package/package.json +8 -9
- 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 +12 -5
- package/release/dev/{main-3bc14461.js → main-33c2575c.js} +393 -79
- package/release/dev/monaco.contribution.js +2 -2
- package/release/dev/{schema-3363b419.js → schema-02ce6595.js} +2 -2
- package/release/esm/kusto.worker.js +2 -2
- package/release/esm/kustoMode.js +1 -1
- package/release/esm/monaco.contribution.js +3 -3
- package/release/esm/{schema-55021e55.js → schema-39a1c54c.js} +1 -1
- 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 +3 -3
- package/release/min/main-9f223763.js +7 -0
- package/release/min/monaco.contribution.js +2 -2
- package/release/min/{schema-3be8e263.js → schema-0a55d8a2.js} +2 -2
- package/release/min/main-1fdaef51.js +0 -7
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ There are 2 APIs to set a Kusto schema:
|
|
|
63
63
|
1. Install Node.js 16 from https://nodejs.org/
|
|
64
64
|
2. Install Yarn from https://yarnpkg.com/
|
|
65
65
|
3. Clone repo and run `yarn` in repo root
|
|
66
|
-
4. Run `yarn watch` from /package and a
|
|
66
|
+
4. Run `yarn watch` from /package and a http-server will automatically open the index.html
|
|
67
67
|
|
|
68
68
|
### Build for release
|
|
69
69
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kusto/monaco-kusto",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.9.0",
|
|
4
4
|
"description": "CSL, KQL plugin for the Monaco Editor",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Microsoft"
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"@babel/core": "^7.21.0",
|
|
39
39
|
"@babel/preset-env": "^7.20.2",
|
|
40
40
|
"@babel/preset-typescript": "^7.21.0",
|
|
41
|
-
"@rollup/plugin-alias": "^
|
|
41
|
+
"@rollup/plugin-alias": "^5.0.0",
|
|
42
42
|
"@rollup/plugin-babel": "^6.0.3",
|
|
43
|
-
"@rollup/plugin-commonjs": "^
|
|
43
|
+
"@rollup/plugin-commonjs": "^25.0.4",
|
|
44
44
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
45
45
|
"@rollup/plugin-replace": "^5.0.2",
|
|
46
46
|
"@rollup/plugin-terser": "^0.4.0",
|
|
@@ -50,21 +50,20 @@
|
|
|
50
50
|
"@types/node": "16",
|
|
51
51
|
"@types/xregexp": "^4.4.0",
|
|
52
52
|
"concurrently": "^7.6.0",
|
|
53
|
-
"http-server": "^
|
|
54
|
-
"live-server": "^1.2.1",
|
|
53
|
+
"http-server": "^14.1.1",
|
|
55
54
|
"monaco-editor": "~0.40.0",
|
|
56
55
|
"rimraf": "^4.1.2",
|
|
57
56
|
"rollup": "^3.17.3",
|
|
58
57
|
"terser": "^5.16.2",
|
|
59
58
|
"ts-node": "^10.9.1",
|
|
60
59
|
"typescript": "^5.0.4",
|
|
61
|
-
"vscode-languageserver-textdocument": "1.0.
|
|
60
|
+
"vscode-languageserver-textdocument": "1.0.8"
|
|
62
61
|
},
|
|
63
62
|
"dependencies": {
|
|
64
|
-
"@kusto/language-service": "0.0.
|
|
65
|
-
"@kusto/language-service-next": "0.0.
|
|
63
|
+
"@kusto/language-service": "0.0.158",
|
|
64
|
+
"@kusto/language-service-next": "0.0.181",
|
|
66
65
|
"lodash-es": "^4.17.21",
|
|
67
|
-
"vscode-languageserver-types": "3.
|
|
66
|
+
"vscode-languageserver-types": "3.17.3",
|
|
68
67
|
"xregexp": "^5.1.1"
|
|
69
68
|
},
|
|
70
69
|
"peerDependencies": {
|