New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codingame/monaco-vscode-textmate-service-override

Package Overview
Dependencies
Maintainers
6
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codingame/monaco-vscode-textmate-service-override - npm Package Compare versions

Comparing version 1.82.6 to 1.83.0-next.0

10

package.json
{
"name": "@codingame/monaco-vscode-textmate-service-override",
"version": "1.82.6",
"version": "1.83.0-next.0",
"keywords": [],

@@ -21,6 +21,6 @@ "author": {

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@1.82.6",
"monaco-editor": "0.43.0",
"vscode-oniguruma": "^2.0.0",
"vscode-textmate": "^9.0.0"
"vscode": "npm:@codingame/monaco-vscode-api@1.83.0-next.0",
"monaco-editor": "0.44.0",
"vscode-oniguruma": "1.7.0",
"vscode-textmate": "9.0.0"
},

@@ -27,0 +27,0 @@ "exports": {

import { Disposable } from 'monaco-editor/esm/vs/base/common/lifecycle.js';
import { keepAlive, autorun, observableFromEvent } from 'monaco-editor/esm/vs/base/common/observable.js';
import { keepObserved, autorun, observableFromEvent } from 'monaco-editor/esm/vs/base/common/observable.js';
import { countEOL } from 'monaco-editor/esm/vs/editor/common/core/eolCounter.js';

@@ -25,3 +25,3 @@ import { LineRange } from 'monaco-editor/esm/vs/editor/common/core/lineRange.js';

this._loggingEnabled = observableConfigValue('editor.experimental.asyncTokenizationLogging', false, this._configurationService);
this._register(keepAlive(this._loggingEnabled));
this._register(keepObserved(this._loggingEnabled));
this._register(this._model.onDidChangeContent((e) => {

@@ -28,0 +28,0 @@ if (this._shouldLog) {

@@ -21,3 +21,3 @@ import { RunOnceScheduler } from 'monaco-editor/esm/vs/base/common/async.js';

this._isDisposed = false;
this._maxTokenizationLineLength = observableValue('_maxTokenizationLineLength', -1);
this._maxTokenizationLineLength = observableValue(this, -1);
this._tokenizeDebouncer = ( new RunOnceScheduler(() => this._tokenize(), 10));

@@ -24,0 +24,0 @@ this._maxTokenizationLineLength.set(maxTokenizationLineLength, undefined);

import { nullTokenizeEncoded } from 'monaco-editor/esm/vs/editor/common/languages/nullTokenize.js';
import { Disposable } from 'monaco-editor/esm/vs/base/common/lifecycle.js';
import { keepAlive } from 'monaco-editor/esm/vs/base/common/observable.js';
import { keepObserved } from 'monaco-editor/esm/vs/base/common/observable.js';

@@ -14,3 +14,3 @@ class TokenizationSupportWithLineLimit extends Disposable {

this._maxTokenizationLineLength = _maxTokenizationLineLength;
this._register(keepAlive(this._maxTokenizationLineLength));
this._register(keepObserved(this._maxTokenizationLineLength));
}

@@ -17,0 +17,0 @@ getInitialState() {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc