Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vscode-html-languageservice

Package Overview
Dependencies
Maintainers
6
Versions
140
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-html-languageservice - npm Package Compare versions

Comparing version 3.0.4-next.14 to 3.0.4-next.15

lib/esm/services/htmlSyncedRegions.js

1

lib/esm/htmlLanguageService.d.ts

@@ -24,4 +24,5 @@ import { Position, CompletionList, Hover, Range, SymbolInformation, TextEdit, DocumentHighlight, DocumentLink, FoldingRange, SelectionRange, WorkspaceEdit } from 'vscode-languageserver-types';

findMatchingTagPosition(document: TextDocument, position: Position, htmlDocument: HTMLDocument): Position | null;
findSyncedRegions(document: TextDocument, position: Position, htmlDocument: HTMLDocument): Range[] | null;
}
export declare function getLanguageService(options?: LanguageServiceOptions): LanguageService;
export declare function newHTMLDataProvider(id: string, customData: HTMLDataV1): IHTMLDataProvider;

4

lib/esm/htmlLanguageService.js

@@ -15,2 +15,3 @@ /*---------------------------------------------------------------------------------------------

import { findMatchingTagPosition } from './services/htmlMatchingTagPosition';
import { findSyncedRegions } from './services/htmlSyncedRegions';
import { getFoldingRanges } from './services/htmlFolding';

@@ -43,3 +44,4 @@ import { getSelectionRanges } from './services/htmlSelectionRange';

doRename: doRename,
findMatchingTagPosition: findMatchingTagPosition
findMatchingTagPosition: findMatchingTagPosition,
findSyncedRegions: findSyncedRegions
};

@@ -46,0 +48,0 @@ }

@@ -24,4 +24,5 @@ import { Position, CompletionList, Hover, Range, SymbolInformation, TextEdit, DocumentHighlight, DocumentLink, FoldingRange, SelectionRange, WorkspaceEdit } from 'vscode-languageserver-types';

findMatchingTagPosition(document: TextDocument, position: Position, htmlDocument: HTMLDocument): Position | null;
findSyncedRegions(document: TextDocument, position: Position, htmlDocument: HTMLDocument): Range[] | null;
}
export declare function getLanguageService(options?: LanguageServiceOptions): LanguageService;
export declare function newHTMLDataProvider(id: string, customData: HTMLDataV1): IHTMLDataProvider;

@@ -11,3 +11,3 @@ /*---------------------------------------------------------------------------------------------

else if (typeof define === "function" && define.amd) {
define(["require", "exports", "./parser/htmlScanner", "./parser/htmlParser", "./services/htmlCompletion", "./services/htmlHover", "./services/htmlFormatter", "./services/htmlLinks", "./services/htmlHighlighting", "./services/htmlSymbolsProvider", "./services/htmlRename", "./services/htmlMatchingTagPosition", "./services/htmlFolding", "./services/htmlSelectionRange", "./languageFacts/builtinDataProviders", "./languageFacts/dataProvider", "./htmlLanguageTypes", "vscode-languageserver-textdocument", "vscode-languageserver-types"], factory);
define(["require", "exports", "./parser/htmlScanner", "./parser/htmlParser", "./services/htmlCompletion", "./services/htmlHover", "./services/htmlFormatter", "./services/htmlLinks", "./services/htmlHighlighting", "./services/htmlSymbolsProvider", "./services/htmlRename", "./services/htmlMatchingTagPosition", "./services/htmlSyncedRegions", "./services/htmlFolding", "./services/htmlSelectionRange", "./languageFacts/builtinDataProviders", "./languageFacts/dataProvider", "./htmlLanguageTypes", "vscode-languageserver-textdocument", "vscode-languageserver-types"], factory);
}

@@ -30,2 +30,3 @@ })(function (require, exports) {

var htmlMatchingTagPosition_1 = require("./services/htmlMatchingTagPosition");
var htmlSyncedRegions_1 = require("./services/htmlSyncedRegions");
var htmlFolding_1 = require("./services/htmlFolding");

@@ -59,3 +60,4 @@ var htmlSelectionRange_1 = require("./services/htmlSelectionRange");

doRename: htmlRename_1.doRename,
findMatchingTagPosition: htmlMatchingTagPosition_1.findMatchingTagPosition
findMatchingTagPosition: htmlMatchingTagPosition_1.findMatchingTagPosition,
findSyncedRegions: htmlSyncedRegions_1.findSyncedRegions
};

@@ -62,0 +64,0 @@ }

{
"name": "vscode-html-languageservice",
"version": "3.0.4-next.14",
"version": "3.0.4-next.15",
"description": "Language service for HTML",

@@ -5,0 +5,0 @@ "main": "./lib/umd/htmlLanguageService.js",

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