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

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

Package Overview
Dependencies
Maintainers
6
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 4.4.0 to 4.4.1

4

package.json
{
"name": "@codingame/monaco-vscode-search-service-override",
"version": "4.4.0",
"version": "4.4.1",
"keywords": [],

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

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@4.4.0"
"vscode": "npm:@codingame/monaco-vscode-api@4.4.1"
},

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

@@ -8,6 +8,6 @@ import { IEditorOverrideServices } from 'vscode/vscode/vs/editor/standalone/browser/standaloneServices';

*/
useHtmlFileSystemProvider: boolean;
useHtmlFileSystemProvider?: boolean;
}
declare function getServiceOverride({ useHtmlFileSystemProvider }: SearchServiceOverrideProps): IEditorOverrideServices;
declare function getServiceOverride({ useHtmlFileSystemProvider }?: SearchServiceOverrideProps): IEditorOverrideServices;
export { getServiceOverride as default };

@@ -12,3 +12,3 @@ import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';

function getServiceOverride({ useHtmlFileSystemProvider }) {
function getServiceOverride({ useHtmlFileSystemProvider = false } = {}) {
return {

@@ -15,0 +15,0 @@ [( ISearchService.toString())]: useHtmlFileSystemProvider ? new SyncDescriptor(RemoteSearchService, [], true) : new SyncDescriptor(SearchService, [], true),

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