mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-31 19:18:08 -05:00
* feat: update to Electron v42
* chore: drop support for arm 32-bit server
* chore: update types/node to v24.x
* chore: temporarily lock the target version for build/
* chore: update v8-source-location.patch
* chore: fix clippy
* chore: cleanup armhf server ci config
* fix: broken lock file
* fix: c++ version requirement for sysroot builds
* fix: msvc compilation of native modules
* fix: handle rejections for fire-and-forget loadurl
* fix: windows build
* ci: fix teardown of daemon process on windows
```
2026-05-15T20:55:09.7717127Z Assertion failed: !(handle->flags & UV_HANDLE_CLOSING), file src\win\async.c, line 76
```
* chore: update deb and rpm dependencies
* chore: update version info
* spec: improve reliablity of offscreencanvas tests
* spec: retry EPERM failures on teardown
* chore: update x86_64 rpm deps
* ci: exclude server binskim for armhf
* temp: bump distro
* test: ignore deprecation warnings treated as errors
* chore: update lockfile
* fix: externalize electron from auth extension bundles
Error: Cannot find module 'c:\Users\cloudtest\AppData\Local\Temp\vscode-sanityQvCaze\vscode-server-win32-x64-web\extensions\github-authentication\dist\install.js'
at Module._resolveFilename (node:internal/modules/cjs/loader:1476:15)
at wrapResolveFilename (node:internal/modules/cjs/loader:1049:27)
at defaultResolveImplForCJSLoading (node:internal/modules/cjs/loader:1073:10)
at resolveForCJSWithHooks (node:internal/modules/cjs/loader:1094:12)
at Module._load (node:internal/modules/cjs/loader:1262:25)
at wrapModuleLoad (node:internal/modules/cjs/loader:255:19)
at Module.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:154:5)
at node:internal/main/run_main_module:33:47 {
code: 'MODULE_NOT_FOUND',
requireStack: []
}
Node.js v24.15.0
* test: make wsl sanity tests reliable
* chore: bump electron@42.1.0
* temp: bump distro
* chore: bump electron@42.2.0
* chore: bump distro
* chore: update debian dependencies
* Revert "test: make wsl sanity tests reliable"
This reverts commit b3f2b63e83.
* test: do not fail for deprecation warnings
* chore: patch node24 server binary for wsl1
* chore: address review feedback
* chore: revert global navigation error handler in browserview
* chore: bump distro
279 lines
8.3 KiB
JSON
279 lines
8.3 KiB
JSON
{
|
|
"name": "html-language-features",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "10.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
|
|
"engines": {
|
|
"vscode": "^1.77.0"
|
|
},
|
|
"icon": "icons/html.png",
|
|
"activationEvents": [
|
|
"onLanguage:html",
|
|
"onLanguage:handlebars"
|
|
],
|
|
"enabledApiProposals": [
|
|
"extensionsAny"
|
|
],
|
|
"main": "./client/out/node/htmlClientMain",
|
|
"browser": "./client/dist/browser/htmlClientMain",
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"compile": "npx gulp compile-extension:html-language-features-client compile-extension:html-language-features-server",
|
|
"watch": "npx gulp watch-extension:html-language-features-client watch-extension:html-language-features-server",
|
|
"install-client-next": "npm install vscode-languageclient@next"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"configuration": {
|
|
"id": "html",
|
|
"order": 20,
|
|
"type": "object",
|
|
"title": "HTML",
|
|
"properties": {
|
|
"html.completion.attributeDefaultValue": {
|
|
"type": "string",
|
|
"scope": "resource",
|
|
"enum": [
|
|
"doublequotes",
|
|
"singlequotes",
|
|
"empty"
|
|
],
|
|
"enumDescriptions": [
|
|
"%html.completion.attributeDefaultValue.doublequotes%",
|
|
"%html.completion.attributeDefaultValue.singlequotes%",
|
|
"%html.completion.attributeDefaultValue.empty%"
|
|
],
|
|
"default": "doublequotes",
|
|
"markdownDescription": "%html.completion.attributeDefaultValue%"
|
|
},
|
|
"html.customData": {
|
|
"type": "array",
|
|
"markdownDescription": "%html.customData.desc%",
|
|
"default": [],
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"scope": "resource"
|
|
},
|
|
"html.format.enable": {
|
|
"type": "boolean",
|
|
"scope": "window",
|
|
"default": true,
|
|
"description": "%html.format.enable.desc%"
|
|
},
|
|
"html.format.wrapLineLength": {
|
|
"type": "integer",
|
|
"scope": "resource",
|
|
"default": 120,
|
|
"description": "%html.format.wrapLineLength.desc%"
|
|
},
|
|
"html.format.unformatted": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
],
|
|
"scope": "resource",
|
|
"default": "wbr",
|
|
"markdownDescription": "%html.format.unformatted.desc%"
|
|
},
|
|
"html.format.contentUnformatted": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
],
|
|
"scope": "resource",
|
|
"default": "pre,code,textarea",
|
|
"markdownDescription": "%html.format.contentUnformatted.desc%"
|
|
},
|
|
"html.format.indentInnerHtml": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": false,
|
|
"markdownDescription": "%html.format.indentInnerHtml.desc%"
|
|
},
|
|
"html.format.preserveNewLines": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%html.format.preserveNewLines.desc%"
|
|
},
|
|
"html.format.maxPreserveNewLines": {
|
|
"type": [
|
|
"number",
|
|
"null"
|
|
],
|
|
"scope": "resource",
|
|
"default": null,
|
|
"markdownDescription": "%html.format.maxPreserveNewLines.desc%"
|
|
},
|
|
"html.format.indentHandlebars": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": false,
|
|
"markdownDescription": "%html.format.indentHandlebars.desc%"
|
|
},
|
|
"html.format.extraLiners": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
],
|
|
"scope": "resource",
|
|
"default": "head, body, /html",
|
|
"markdownDescription": "%html.format.extraLiners.desc%"
|
|
},
|
|
"html.format.wrapAttributes": {
|
|
"type": "string",
|
|
"scope": "resource",
|
|
"default": "auto",
|
|
"enum": [
|
|
"auto",
|
|
"force",
|
|
"force-aligned",
|
|
"force-expand-multiline",
|
|
"aligned-multiple",
|
|
"preserve",
|
|
"preserve-aligned"
|
|
],
|
|
"enumDescriptions": [
|
|
"%html.format.wrapAttributes.auto%",
|
|
"%html.format.wrapAttributes.force%",
|
|
"%html.format.wrapAttributes.forcealign%",
|
|
"%html.format.wrapAttributes.forcemultiline%",
|
|
"%html.format.wrapAttributes.alignedmultiple%",
|
|
"%html.format.wrapAttributes.preserve%",
|
|
"%html.format.wrapAttributes.preservealigned%"
|
|
],
|
|
"description": "%html.format.wrapAttributes.desc%"
|
|
},
|
|
"html.format.wrapAttributesIndentSize": {
|
|
"type": [
|
|
"number",
|
|
"null"
|
|
],
|
|
"scope": "resource",
|
|
"default": null,
|
|
"markdownDescription": "%html.format.wrapAttributesIndentSize.desc%"
|
|
},
|
|
"html.format.templating": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": false,
|
|
"description": "%html.format.templating.desc%"
|
|
},
|
|
"html.format.unformattedContentDelimiter": {
|
|
"type": "string",
|
|
"scope": "resource",
|
|
"default": "",
|
|
"markdownDescription": "%html.format.unformattedContentDelimiter.desc%"
|
|
},
|
|
"html.suggest.html5": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%html.suggest.html5.desc%"
|
|
},
|
|
"html.suggest.hideEndTagSuggestions": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": false,
|
|
"description": "%html.suggest.hideEndTagSuggestions.desc%"
|
|
},
|
|
"html.validate.scripts": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%html.validate.scripts%"
|
|
},
|
|
"html.validate.styles": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%html.validate.styles%"
|
|
},
|
|
"html.autoCreateQuotes": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"markdownDescription": "%html.autoCreateQuotes%"
|
|
},
|
|
"html.autoClosingTags": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%html.autoClosingTags%"
|
|
},
|
|
"html.hover.documentation": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%html.hover.documentation%"
|
|
},
|
|
"html.hover.references": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%html.hover.references%"
|
|
},
|
|
"html.mirrorCursorOnMatchingTag": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": false,
|
|
"description": "%html.mirrorCursorOnMatchingTag%",
|
|
"deprecationMessage": "%html.mirrorCursorOnMatchingTagDeprecationMessage%"
|
|
},
|
|
"html.trace.server": {
|
|
"type": "string",
|
|
"scope": "window",
|
|
"enum": [
|
|
"off",
|
|
"messages",
|
|
"verbose"
|
|
],
|
|
"default": "off",
|
|
"description": "%html.trace.server.desc%"
|
|
}
|
|
}
|
|
},
|
|
"configurationDefaults": {
|
|
"[html]": {
|
|
"editor.suggest.insertMode": "replace"
|
|
},
|
|
"[handlebars]": {
|
|
"editor.suggest.insertMode": "replace"
|
|
}
|
|
},
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "*.html-data.json",
|
|
"url": "https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/master/docs/customData.schema.json"
|
|
},
|
|
{
|
|
"fileMatch": "package.json",
|
|
"url": "./schemas/package.schema.json"
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@vscode/extension-telemetry": "^0.9.8",
|
|
"vscode-languageclient": "^10.0.0-next.10",
|
|
"vscode-uri": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "24.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|