@codingame/monaco-vscode-treesitter-service-override 15.0.0 → 15.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-treesitter-service-override",
3
- "version": "15.0.0",
3
+ "version": "15.0.1",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - treesitter service-override",
6
6
  "keywords": [],
@@ -15,10 +15,10 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-168b98e5-dc20-5807-b1f9-798f1f92b37f-common": "15.0.0",
19
- "@codingame/monaco-vscode-7ba0af96-90c2-5e11-ad7f-befdbbf246c8-common": "15.0.0",
20
- "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common": "15.0.0",
21
- "@codingame/monaco-vscode-api": "15.0.0",
18
+ "@codingame/monaco-vscode-168b98e5-dc20-5807-b1f9-798f1f92b37f-common": "15.0.1",
19
+ "@codingame/monaco-vscode-7ba0af96-90c2-5e11-ad7f-befdbbf246c8-common": "15.0.1",
20
+ "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common": "15.0.1",
21
+ "@codingame/monaco-vscode-api": "15.0.1",
22
22
  "@vscode/tree-sitter-wasm": "0.1.3"
23
23
  },
24
24
  "main": "index.js",
@@ -1,9 +1,9 @@
1
1
 
2
2
  import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
3
3
  import { TokenStore, TokenQuality } from './tokenStore.js';
4
- import { registerSingleton, InstantiationType } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/extensions';
4
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/extensions';
5
5
  import { DisposableStore } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
6
- import { ITreeSitterTokenizationStoreService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/model/treeSitterTokenStoreService.service';
6
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
7
7
 
8
8
  class TreeSitterTokenizationStoreService {
9
9
  constructor() {
@@ -125,6 +125,5 @@ class TreeSitterTokenizationStoreService {
125
125
  }
126
126
  }
127
127
  }
128
- registerSingleton(ITreeSitterTokenizationStoreService, TreeSitterTokenizationStoreService, InstantiationType.Delayed);
129
128
 
130
129
  export { TreeSitterTokenizationStoreService };