Updates dockerfile
All checks were successful
Build and Push / build (push) Successful in 55s

This commit is contained in:
2026-02-16 15:09:37 -05:00
parent 8346776f2a
commit d181f77fb2
14943 changed files with 2078509 additions and 16 deletions

21
node_modules/volar-service-html/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2022-present Johnson Chu
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

25
node_modules/volar-service-html/README.md generated vendored Normal file
View File

@@ -0,0 +1,25 @@
# volar-service-html
Volar plugin for [`vscode-html-languageservice`](https://github.com/microsoft/vscode-html-languageservice).
## Installation
```sh
npm install volar-service-html
```
## Usage
`volar.config.js`
```js
module.exports = {
services: [
require('volar-service-html').create(),
],
};
```
## License
[MIT](LICENSE) © [Johnson Chu](https://github.com/johnsoncodehk)

28
node_modules/volar-service-html/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,28 @@
import type { Disposable, DocumentSelector, FormattingOptions, LanguageServiceContext, LanguageServicePlugin, ProviderResult } from '@volar/language-service';
import * as html from 'vscode-html-languageservice';
import { TextDocument } from 'vscode-languageserver-textdocument';
import { URI } from 'vscode-uri';
export interface Provide {
'html/htmlDocument': (document: TextDocument) => html.HTMLDocument | undefined;
'html/languageService': () => html.LanguageService;
'html/documentContext': () => html.DocumentContext;
}
export declare function resolveReference(ref: string, baseUri: URI, workspaceFolders: URI[]): string;
export declare function create({ documentSelector, configurationSections, useDefaultDataProvider, getDocumentContext, isFormattingEnabled, getFormattingOptions, getCompletionConfiguration, getHoverSettings, getCustomData, onDidChangeCustomData, }?: {
documentSelector?: DocumentSelector;
configurationSections?: {
autoCreateQuotes: string;
autoClosingTags: string;
};
useDefaultDataProvider?: boolean;
isFormattingEnabled?(document: TextDocument, context: LanguageServiceContext): ProviderResult<boolean>;
isAutoCreateQuotesEnabled?(document: TextDocument, context: LanguageServiceContext): ProviderResult<boolean>;
isAutoClosingTagsEnabled?(document: TextDocument, context: LanguageServiceContext): ProviderResult<boolean>;
getDocumentContext?(context: LanguageServiceContext): html.DocumentContext;
getFormattingOptions?(document: TextDocument, options: FormattingOptions, context: LanguageServiceContext): ProviderResult<html.HTMLFormatConfiguration>;
getCompletionConfiguration?(document: TextDocument, context: LanguageServiceContext): ProviderResult<html.CompletionConfiguration | undefined>;
getHoverSettings?(document: TextDocument, context: LanguageServiceContext): ProviderResult<html.HoverSettings | undefined>;
getCustomData?(context: LanguageServiceContext): ProviderResult<html.IHTMLDataProvider[]>;
onDidChangeCustomData?(listener: () => void, context: LanguageServiceContext): Disposable;
}): LanguageServicePlugin;
//# sourceMappingURL=index.d.ts.map

383
node_modules/volar-service-html/index.js generated vendored Normal file
View File

@@ -0,0 +1,383 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolveReference = resolveReference;
exports.create = create;
const html = require("vscode-html-languageservice");
const vscode_languageserver_textdocument_1 = require("vscode-languageserver-textdocument");
const vscode_uri_1 = require("vscode-uri");
function resolveReference(ref, baseUri, workspaceFolders) {
if (ref.match(/^\w[\w\d+.-]*:/)) {
// starts with a schema
return ref;
}
if (ref[0] === '/') { // resolve absolute path against the current workspace folder
const folderUri = getRootFolder();
if (folderUri) {
return folderUri + ref.substr(1);
}
}
const baseUriDir = baseUri.path.endsWith('/') ? baseUri : vscode_uri_1.Utils.dirname(baseUri);
return vscode_uri_1.Utils.resolvePath(baseUriDir, ref).toString(true);
function getRootFolder() {
for (const folder of workspaceFolders) {
let folderURI = folder.toString();
if (!folderURI.endsWith('/')) {
folderURI = folderURI + '/';
}
if (baseUri.toString().startsWith(folderURI)) {
return folderURI;
}
}
}
}
function create({ documentSelector = ['html'], configurationSections = {
autoCreateQuotes: 'html.autoCreateQuotes',
autoClosingTags: 'html.autoClosingTags',
}, useDefaultDataProvider = true, getDocumentContext = context => {
return {
resolveReference(ref, base) {
let baseUri = vscode_uri_1.URI.parse(base);
const decoded = context.decodeEmbeddedDocumentUri(baseUri);
if (decoded) {
baseUri = decoded[0];
}
return resolveReference(ref, baseUri, context.env.workspaceFolders);
},
};
}, isFormattingEnabled = async (_document, context) => {
return await context.env.getConfiguration?.('html.format.enable') ?? true;
}, getFormattingOptions = async (_document, options, context) => {
const formatSettings = {
...options,
endWithNewline: options.insertFinalNewline ? true : options.trimFinalNewlines ? false : undefined,
...await context.env.getConfiguration?.('html.format'),
};
// https://github.com/microsoft/vscode/blob/a8f73340be02966c3816a2f23cb7e446a3a7cb9b/extensions/html-language-features/server/src/modes/htmlMode.ts#L47-L51
if (formatSettings.contentUnformatted) {
formatSettings.contentUnformatted = formatSettings.contentUnformatted + ',script';
}
else {
formatSettings.contentUnformatted = 'script';
}
return formatSettings;
}, getCompletionConfiguration = async (_document, context) => {
return await context.env.getConfiguration?.('html.completion');
}, getHoverSettings = async (_document, context) => {
return await context.env.getConfiguration?.('html.hover');
}, getCustomData = async (context) => {
const customData = await context.env.getConfiguration?.('html.customData') ?? [];
const newData = [];
for (const customDataPath of customData) {
for (const workspaceFolder of context.env.workspaceFolders) {
const uri = vscode_uri_1.Utils.resolvePath(workspaceFolder, customDataPath);
const json = await context.env.fs?.readFile?.(uri);
if (json) {
try {
const data = JSON.parse(json);
newData.push(html.newHTMLDataProvider(customDataPath, data));
}
catch (error) {
console.error(error);
}
break;
}
}
}
return newData;
}, onDidChangeCustomData = (listener, context) => {
const disposable = context.env.onDidChangeConfiguration?.(listener);
return {
dispose() {
disposable?.dispose();
},
};
}, } = {}) {
return {
name: 'html',
capabilities: {
completionProvider: {
// https://github.com/microsoft/vscode/blob/09850876e652688fb142e2e19fd00fd38c0bc4ba/extensions/html-language-features/server/src/htmlServer.ts#L183
triggerCharacters: ['.', ':', '<', '"', '=', '/'],
},
renameProvider: {
prepareProvider: true,
},
hoverProvider: true,
documentHighlightProvider: true,
documentLinkProvider: {},
documentSymbolProvider: true,
foldingRangeProvider: true,
selectionRangeProvider: true,
documentFormattingProvider: true,
linkedEditingRangeProvider: true,
autoInsertionProvider: {
triggerCharacters: ['=', '>', '/'],
configurationSections: [
configurationSections.autoCreateQuotes,
configurationSections.autoClosingTags,
configurationSections.autoClosingTags,
],
},
},
create(context) {
const htmlDocuments = new WeakMap();
const fileSystemProvider = {
stat: async (uri) => await context.env.fs?.stat(vscode_uri_1.URI.parse(uri))
?? { type: html.FileType.Unknown, ctime: 0, mtime: 0, size: 0 },
readDirectory: async (uri) => await context.env.fs?.readDirectory(vscode_uri_1.URI.parse(uri)) ?? [],
};
const documentContext = getDocumentContext(context);
const htmlLs = html.getLanguageService({
fileSystemProvider,
clientCapabilities: context.env.clientCapabilities,
useDefaultDataProvider,
});
const disposable = onDidChangeCustomData(() => initializing = undefined, context);
let initializing;
return {
dispose() {
disposable.dispose();
},
provide: {
'html/htmlDocument': document => {
if (matchDocument(documentSelector, document)) {
return getHtmlDocument(document);
}
},
'html/languageService': () => htmlLs,
'html/documentContext': () => documentContext,
},
async provideCompletionItems(document, position) {
return worker(document, async (htmlDocument) => {
const configs = await getCompletionConfiguration(document, context);
return htmlLs.doComplete2(document, position, htmlDocument, documentContext, configs);
});
},
provideRenameRange(document, position) {
return worker(document, htmlDocument => {
const offset = document.offsetAt(position);
return htmlLs
.findDocumentHighlights(document, position, htmlDocument)
?.find(h => offset >= document.offsetAt(h.range.start) && offset <= document.offsetAt(h.range.end))
?.range;
});
},
provideRenameEdits(document, position, newName) {
return worker(document, htmlDocument => {
return htmlLs.doRename(document, position, newName, htmlDocument);
});
},
async provideHover(document, position) {
return worker(document, async (htmlDocument) => {
const hoverSettings = await getHoverSettings(document, context);
return htmlLs.doHover(document, position, htmlDocument, hoverSettings);
});
},
provideDocumentHighlights(document, position) {
return worker(document, htmlDocument => {
return htmlLs.findDocumentHighlights(document, position, htmlDocument);
});
},
provideDocumentLinks(document) {
return worker(document, () => {
return htmlLs.findDocumentLinks(document, documentContext);
});
},
provideDocumentSymbols(document) {
return worker(document, htmlDocument => {
return htmlLs.findDocumentSymbols2(document, htmlDocument);
});
},
provideFoldingRanges(document) {
return worker(document, () => {
return htmlLs.getFoldingRanges(document, context.env.clientCapabilities?.textDocument?.foldingRange);
});
},
provideSelectionRanges(document, positions) {
return worker(document, () => {
return htmlLs.getSelectionRanges(document, positions);
});
},
async provideDocumentFormattingEdits(document, formatRange, options, codeOptions) {
return worker(document, async () => {
if (!await isFormattingEnabled(document, context)) {
return;
}
// https://github.com/microsoft/vscode/blob/dce493cb6e36346ef2714e82c42ce14fc461b15c/extensions/html-language-features/server/src/modes/formatting.ts#L13-L23
const endPos = formatRange.end;
let endOffset = document.offsetAt(endPos);
const content = document.getText();
if (endPos.character === 0 && endPos.line > 0 && endOffset !== content.length) {
// if selection ends after a new line, exclude that new line
const prevLineStart = document.offsetAt({ line: endPos.line - 1, character: 0 });
while (isEOL(content, endOffset - 1) && endOffset > prevLineStart) {
endOffset--;
}
formatRange = {
start: formatRange.start,
end: document.positionAt(endOffset),
};
}
const formatSettings = await getFormattingOptions(document, options, context);
let formatDocument = document;
let prefixes = [];
let suffixes = [];
if (codeOptions?.initialIndentLevel) {
for (let i = 0; i < codeOptions.initialIndentLevel; i++) {
if (i === codeOptions.initialIndentLevel - 1) {
prefixes.push('<template>');
suffixes.unshift('</template>');
}
else {
prefixes.push('<template>\n');
suffixes.unshift('\n</template>');
}
}
formatDocument = vscode_languageserver_textdocument_1.TextDocument.create(document.uri, document.languageId, document.version, prefixes.join('') + document.getText() + suffixes.join(''));
formatRange = {
start: formatDocument.positionAt(0),
end: formatDocument.positionAt(formatDocument.getText().length),
};
}
let edits = htmlLs.format(formatDocument, formatRange, formatSettings);
if (codeOptions) {
let newText = vscode_languageserver_textdocument_1.TextDocument.applyEdits(formatDocument, edits);
for (const prefix of prefixes) {
newText = newText.trimStart().slice(prefix.trim().length);
}
for (const suffix of suffixes.reverse()) {
newText = newText.trimEnd().slice(0, -suffix.trim().length);
}
if (!codeOptions.initialIndentLevel && codeOptions.level > 0) {
newText = ensureNewLines(newText);
}
edits = [{
range: {
start: document.positionAt(0),
end: document.positionAt(document.getText().length),
},
newText,
}];
}
return edits;
function ensureNewLines(newText) {
const verifyDocument = vscode_languageserver_textdocument_1.TextDocument.create(document.uri, document.languageId, document.version, '<template>' + newText + '</template>');
const verifyEdits = htmlLs.format(verifyDocument, undefined, formatSettings);
let verifyText = vscode_languageserver_textdocument_1.TextDocument.applyEdits(verifyDocument, verifyEdits);
verifyText = verifyText.trim().slice('<template>'.length, -'</template>'.length);
if (startWithNewLine(verifyText) !== startWithNewLine(newText)) {
if (startWithNewLine(verifyText)) {
newText = '\n' + newText;
}
else if (newText.startsWith('\n')) {
newText = newText.slice(1);
}
else if (newText.startsWith('\r\n')) {
newText = newText.slice(2);
}
}
if (endWithNewLine(verifyText) !== endWithNewLine(newText)) {
if (endWithNewLine(verifyText)) {
newText = newText + '\n';
}
else if (newText.endsWith('\n')) {
newText = newText.slice(0, -1);
}
else if (newText.endsWith('\r\n')) {
newText = newText.slice(0, -2);
}
}
return newText;
}
function startWithNewLine(text) {
return text.startsWith('\n') || text.startsWith('\r\n');
}
function endWithNewLine(text) {
return text.endsWith('\n') || text.endsWith('\r\n');
}
});
},
provideLinkedEditingRanges(document, position) {
return worker(document, htmlDocument => {
const ranges = htmlLs.findLinkedEditingRanges(document, position, htmlDocument);
if (!ranges) {
return;
}
return { ranges };
});
},
async provideAutoInsertSnippet(document, selection, change) {
// selection must at end of change
if (document.offsetAt(selection) !== change.rangeOffset + change.text.length) {
return;
}
return worker(document, async (htmlDocument) => {
if (change.rangeLength === 0 && change.text.endsWith('=')) {
const enabled = await context.env.getConfiguration?.(configurationSections.autoCreateQuotes) ?? true;
if (enabled) {
const completionConfiguration = await getCompletionConfiguration(document, context);
const text = htmlLs.doQuoteComplete(document, selection, htmlDocument, completionConfiguration);
if (text) {
return text;
}
}
}
if (change.rangeLength === 0 && (change.text.endsWith('>') || change.text.endsWith('/'))) {
const enabled = await context.env.getConfiguration?.(configurationSections.autoClosingTags) ?? true;
if (enabled) {
const text = htmlLs.doTagComplete(document, selection, htmlDocument);
if (text) {
return text;
}
}
}
});
},
};
function getHtmlDocument(document) {
const cache = htmlDocuments.get(document);
if (cache) {
const [cacheVersion, cacheDoc] = cache;
if (cacheVersion === document.version) {
return cacheDoc;
}
}
const doc = htmlLs.parseHTMLDocument(document);
htmlDocuments.set(document, [document.version, doc]);
return doc;
}
async function worker(document, callback) {
if (!matchDocument(documentSelector, document)) {
return;
}
const htmlDocument = getHtmlDocument(document);
if (!htmlDocument) {
return;
}
await (initializing ??= initialize());
return callback(htmlDocument);
}
async function initialize() {
const customData = await getCustomData(context);
htmlLs.setDataProviders(useDefaultDataProvider, customData);
}
},
};
}
function isEOL(content, offset) {
return isNewlineCharacter(content.charCodeAt(offset));
}
const CR = '\r'.charCodeAt(0);
const NL = '\n'.charCodeAt(0);
function isNewlineCharacter(charCode) {
return charCode === CR || charCode === NL;
}
function matchDocument(selector, document) {
for (const sel of selector) {
if (sel === document.languageId || (typeof sel === 'object' && sel.language === document.languageId)) {
return true;
}
}
return false;
}
//# sourceMappingURL=index.js.map

43
node_modules/volar-service-html/package.json generated vendored Normal file
View File

@@ -0,0 +1,43 @@
{
"name": "volar-service-html",
"version": "0.0.62",
"description": "Integrate vscode-languageservice-html into Volar",
"homepage": "https://github.com/volarjs/services/tree/master/packages/html",
"bugs": "https://github.com/volarjs/services/issues",
"sideEffects": false,
"keywords": [
"volar-service"
],
"license": "MIT",
"files": [
"**/*.js",
"**/*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/volarjs/services.git",
"directory": "packages/html"
},
"author": {
"name": "Johnson Chu",
"email": "johnsoncodehk@gmail.com",
"url": "https://github.com/johnsoncodehk"
},
"dependencies": {
"vscode-html-languageservice": "^5.3.0",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@types/node": "latest"
},
"peerDependencies": {
"@volar/language-service": "~2.4.0"
},
"peerDependenciesMeta": {
"@volar/language-service": {
"optional": true
}
},
"gitHead": "f1ddbdc4d9df0772db5a0d46ff8ff64eecc9de02"
}