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

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

Package Overview
Dependencies
Maintainers
6
Versions
149
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 6.0.1 to 6.0.2

7

files.js

@@ -241,6 +241,7 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

_lookupRoot(authority) {
let root = this.rootByAuthority.get(authority);
const _authority = authority.toLowerCase();
let root = this.rootByAuthority.get(_authority);
if (root == null) {
root = new RegisteredDirectory();
this.rootByAuthority.set(authority, root);
this.rootByAuthority.set(_authority, root);
}

@@ -308,3 +309,3 @@ return root;

if (directory.getChildren(name) != null) {
throw new Error(`file '${uri.toString()}' already exists`);
throw new Error(`file '${extUri.joinPath(uri, name).toString()}/' already exists`);
}

@@ -311,0 +312,0 @@ const disposableStore = new DisposableStore();

{
"name": "@codingame/monaco-vscode-files-service-override",
"version": "6.0.1",
"version": "6.0.2",
"keywords": [],

@@ -29,4 +29,4 @@ "author": {

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@6.0.1"
"vscode": "npm:@codingame/monaco-vscode-api@6.0.2"
}
}
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