mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-25 12:16:07 +00:00
* feat: move from yarn to npm * chore: skip yarn.lock files * fix: playwright download * chore: fix compile and hygiene * chore: bump vsce@2.17.0 Refs8b49e9dfdf* test: update results for bat and sh colorizer tests * fix: add missing lock files for windows * fix: switch to legacy-peer-deps * chore: update markdown-it@14.1.0 Refs737c95a129esbuild step in extensions-ci-pr was previously using markdown-it from root which had userland punycode and was able to compile successfully. * ci: increase pr timeout for windows integration tests * chore: fix product build * build: ignore extension dev dependency for rcedit * build: fix working directory inside container * build: fix dependency generation * npm: update dependencies * ci: use global npmrc * ci: update cache * ci: setup global npmrc for private npm auth * build: fix extension bundling * chore: sync npm dependencies * ci: debug env variables for container * ci: fix win32 cli pipeline * build: fix npmrc config usage for build/ and remote/ dirs * fix: windows build * fix: container builds * fix: markdown-language-features tests and bundling ``` [03:58:22] Error: Command failed: /Users/demohan/.nvm/versions/node/v20.15.1/bin/node /Users/demohan/github/vscode/extensions/markdown-language-features/esbuild-notebook.js --outputRoot /Users/demohan/github/vscode/.build/extensions/markdown-language-features ✘ [ERROR] Could not resolve "punycode" extensions/markdown-language-features/node_modules/markdown-it/lib/index.js:14:27: 14 │ var punycode = require('punycode'); ╵ ~~~~~~~~~~ The package "punycode" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error. ``` Adds userland package based onbeed9aee2c* fix: container builds for distro * chore: update yarn occurrences * fixup! chore: bump vsce@2.17.0 Uses the closest version to `main` branch that does not included3cc84cdecwhile still having the fix8b49e9dfdf* chore: sync npm dependencies * chore: sync npm dependencies * chore: sync npm dependencies * chore: throw error when yarn is used for installation * chore: add review feedback * chore: switch exec => run where needed * chore: npm sync dependencies * fix: markdown-language-features bundling ``` ✘ [ERROR] Could not resolve "punycode" extensions/markdown-language-features/node_modules/markdown-it/lib/index.js:14:27: 14 │ var punycode = require('punycode'); ╵ ~~~~~~~~~~ The package "punycode" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error. ``` Adds missing userland package based on markdown-it/markdown-it@beed9ae, can be removed once we update markdown-it >= 14.1.0 * ci: rename no-yarn-lock-changes.yml * chore: sync npm dependencies * ci: restore no-yarn-lock-changes.yml We can disable it in a separate PR to keep the required checks happy and also need workflow edit perms. * chore: sync npm dependencies * ci: rebuild cache * ci: fix no-package-lock-changes.yml * chore: bump distro * chore: rm yarn.lock files * chore: rm yarn.lock files without dependencies * chore: add vscode-selfhost-import-aid to postinstall dirs * chore: bump distro
499 lines
15 KiB
JSON
499 lines
15 KiB
JSON
{
|
|
"name": "emmet",
|
|
"displayName": "Emmet",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.13.0"
|
|
},
|
|
"icon": "images/icon.png",
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:emmet.expandAbbreviation",
|
|
"onLanguage"
|
|
],
|
|
"main": "./out/node/emmetNodeMain",
|
|
"browser": "./dist/browser/emmetBrowserMain",
|
|
"contributes": {
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "Emmet",
|
|
"properties": {
|
|
"emmet.showExpandedAbbreviation": {
|
|
"type": [
|
|
"string"
|
|
],
|
|
"enum": [
|
|
"never",
|
|
"always",
|
|
"inMarkupAndStylesheetFilesOnly"
|
|
],
|
|
"default": "always",
|
|
"markdownDescription": "%emmetShowExpandedAbbreviation%"
|
|
},
|
|
"emmet.showAbbreviationSuggestions": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"scope": "language-overridable",
|
|
"markdownDescription": "%emmetShowAbbreviationSuggestions%"
|
|
},
|
|
"emmet.includeLanguages": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
},
|
|
"default": {},
|
|
"markdownDescription": "%emmetIncludeLanguages%"
|
|
},
|
|
"emmet.variables": {
|
|
"type": "object",
|
|
"properties": {
|
|
"lang": {
|
|
"type": "string",
|
|
"default": "en"
|
|
},
|
|
"charset": {
|
|
"type": "string",
|
|
"default": "UTF-8"
|
|
}
|
|
},
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
},
|
|
"default": {},
|
|
"markdownDescription": "%emmetVariables%"
|
|
},
|
|
"emmet.syntaxProfiles": {
|
|
"type": "object",
|
|
"default": {},
|
|
"markdownDescription": "%emmetSyntaxProfiles%"
|
|
},
|
|
"emmet.excludeLanguages": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"default": [
|
|
"markdown"
|
|
],
|
|
"markdownDescription": "%emmetExclude%"
|
|
},
|
|
"emmet.extensionsPath": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"markdownDescription": "%emmetExtensionsPathItem%"
|
|
},
|
|
"default": [],
|
|
"scope": "machine-overridable",
|
|
"markdownDescription": "%emmetExtensionsPath%"
|
|
},
|
|
"emmet.triggerExpansionOnTab": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"scope": "language-overridable",
|
|
"markdownDescription": "%emmetTriggerExpansionOnTab%"
|
|
},
|
|
"emmet.useInlineCompletions": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"markdownDescription": "%emmetUseInlineCompletions%"
|
|
},
|
|
"emmet.preferences": {
|
|
"type": "object",
|
|
"default": {},
|
|
"markdownDescription": "%emmetPreferences%",
|
|
"properties": {
|
|
"css.intUnit": {
|
|
"type": "string",
|
|
"default": "px",
|
|
"markdownDescription": "%emmetPreferencesIntUnit%"
|
|
},
|
|
"css.floatUnit": {
|
|
"type": "string",
|
|
"default": "em",
|
|
"markdownDescription": "%emmetPreferencesFloatUnit%"
|
|
},
|
|
"css.propertyEnd": {
|
|
"type": "string",
|
|
"default": ";",
|
|
"markdownDescription": "%emmetPreferencesCssAfter%"
|
|
},
|
|
"sass.propertyEnd": {
|
|
"type": "string",
|
|
"default": "",
|
|
"markdownDescription": "%emmetPreferencesSassAfter%"
|
|
},
|
|
"stylus.propertyEnd": {
|
|
"type": "string",
|
|
"default": "",
|
|
"markdownDescription": "%emmetPreferencesStylusAfter%"
|
|
},
|
|
"css.valueSeparator": {
|
|
"type": "string",
|
|
"default": ": ",
|
|
"markdownDescription": "%emmetPreferencesCssBetween%"
|
|
},
|
|
"sass.valueSeparator": {
|
|
"type": "string",
|
|
"default": ": ",
|
|
"markdownDescription": "%emmetPreferencesSassBetween%"
|
|
},
|
|
"stylus.valueSeparator": {
|
|
"type": "string",
|
|
"default": " ",
|
|
"markdownDescription": "%emmetPreferencesStylusBetween%"
|
|
},
|
|
"bem.elementSeparator": {
|
|
"type": "string",
|
|
"default": "__",
|
|
"markdownDescription": "%emmetPreferencesBemElementSeparator%"
|
|
},
|
|
"bem.modifierSeparator": {
|
|
"type": "string",
|
|
"default": "_",
|
|
"markdownDescription": "%emmetPreferencesBemModifierSeparator%"
|
|
},
|
|
"filter.commentBefore": {
|
|
"type": "string",
|
|
"default": "",
|
|
"markdownDescription": "%emmetPreferencesFilterCommentBefore%"
|
|
},
|
|
"filter.commentAfter": {
|
|
"type": "string",
|
|
"default": "\n<!-- /[#ID][.CLASS] -->",
|
|
"markdownDescription": "%emmetPreferencesFilterCommentAfter%"
|
|
},
|
|
"filter.commentTrigger": {
|
|
"type": "array",
|
|
"default": [
|
|
"id",
|
|
"class"
|
|
],
|
|
"markdownDescription": "%emmetPreferencesFilterCommentTrigger%"
|
|
},
|
|
"format.noIndentTags": {
|
|
"type": "array",
|
|
"default": [
|
|
"html"
|
|
],
|
|
"markdownDescription": "%emmetPreferencesFormatNoIndentTags%"
|
|
},
|
|
"format.forceIndentationForTags": {
|
|
"type": "array",
|
|
"default": [
|
|
"body"
|
|
],
|
|
"markdownDescription": "%emmetPreferencesFormatForceIndentTags%"
|
|
},
|
|
"profile.allowCompactBoolean": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"markdownDescription": "%emmetPreferencesAllowCompactBoolean%"
|
|
},
|
|
"css.webkitProperties": {
|
|
"type": "string",
|
|
"default": null,
|
|
"markdownDescription": "%emmetPreferencesCssWebkitProperties%"
|
|
},
|
|
"css.mozProperties": {
|
|
"type": "string",
|
|
"default": null,
|
|
"markdownDescription": "%emmetPreferencesCssMozProperties%"
|
|
},
|
|
"css.oProperties": {
|
|
"type": "string",
|
|
"default": null,
|
|
"markdownDescription": "%emmetPreferencesCssOProperties%"
|
|
},
|
|
"css.msProperties": {
|
|
"type": "string",
|
|
"default": null,
|
|
"markdownDescription": "%emmetPreferencesCssMsProperties%"
|
|
},
|
|
"css.fuzzySearchMinScore": {
|
|
"type": "number",
|
|
"default": 0.3,
|
|
"markdownDescription": "%emmetPreferencesCssFuzzySearchMinScore%"
|
|
},
|
|
"output.inlineBreak": {
|
|
"type": "number",
|
|
"default": 0,
|
|
"markdownDescription": "%emmetPreferencesOutputInlineBreak%"
|
|
},
|
|
"output.reverseAttributes": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"markdownDescription": "%emmetPreferencesOutputReverseAttributes%"
|
|
},
|
|
"output.selfClosingStyle": {
|
|
"type": "string",
|
|
"enum": [
|
|
"html",
|
|
"xhtml",
|
|
"xml"
|
|
],
|
|
"default": "html",
|
|
"markdownDescription": "%emmetPreferencesOutputSelfClosingStyle%"
|
|
},
|
|
"css.color.short": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"markdownDescription": "%emmetPreferencesCssColorShort%"
|
|
}
|
|
}
|
|
},
|
|
"emmet.showSuggestionsAsSnippets": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"markdownDescription": "%emmetShowSuggestionsAsSnippets%"
|
|
},
|
|
"emmet.optimizeStylesheetParsing": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"markdownDescription": "%emmetOptimizeStylesheetParsing%"
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "editor.emmet.action.wrapWithAbbreviation",
|
|
"title": "%command.wrapWithAbbreviation%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.removeTag",
|
|
"title": "%command.removeTag%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.updateTag",
|
|
"title": "%command.updateTag%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.matchTag",
|
|
"title": "%command.matchTag%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.balanceIn",
|
|
"title": "%command.balanceIn%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.balanceOut",
|
|
"title": "%command.balanceOut%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.prevEditPoint",
|
|
"title": "%command.prevEditPoint%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.nextEditPoint",
|
|
"title": "%command.nextEditPoint%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.mergeLines",
|
|
"title": "%command.mergeLines%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.selectPrevItem",
|
|
"title": "%command.selectPrevItem%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.selectNextItem",
|
|
"title": "%command.selectNextItem%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.splitJoinTag",
|
|
"title": "%command.splitJoinTag%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.toggleComment",
|
|
"title": "%command.toggleComment%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.evaluateMathExpression",
|
|
"title": "%command.evaluateMathExpression%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.updateImageSize",
|
|
"title": "%command.updateImageSize%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.incrementNumberByOneTenth",
|
|
"title": "%command.incrementNumberByOneTenth%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.incrementNumberByOne",
|
|
"title": "%command.incrementNumberByOne%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.incrementNumberByTen",
|
|
"title": "%command.incrementNumberByTen%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.decrementNumberByOneTenth",
|
|
"title": "%command.decrementNumberByOneTenth%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.decrementNumberByOne",
|
|
"title": "%command.decrementNumberByOne%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.decrementNumberByTen",
|
|
"title": "%command.decrementNumberByTen%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.reflectCSSValue",
|
|
"title": "%command.reflectCSSValue%",
|
|
"category": "Emmet"
|
|
},
|
|
{
|
|
"command": "workbench.action.showEmmetCommands",
|
|
"title": "%command.showEmmetCommands%",
|
|
"category": ""
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "editor.emmet.action.wrapWithAbbreviation",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.removeTag",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.updateTag",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.matchTag",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.balanceIn",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.balanceOut",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.prevEditPoint",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.nextEditPoint",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.mergeLines",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.selectPrevItem",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.selectNextItem",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.splitJoinTag",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.toggleComment",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.evaluateMathExpression",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.updateImageSize",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.incrementNumberByOneTenth",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.incrementNumberByOne",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.incrementNumberByTen",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.decrementNumberByOneTenth",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.decrementNumberByOne",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.decrementNumberByTen",
|
|
"when": "!activeEditorIsReadonly"
|
|
},
|
|
{
|
|
"command": "editor.emmet.action.reflectCSSValue",
|
|
"when": "!activeEditorIsReadonly"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"watch": "gulp watch-extension:emmet",
|
|
"compile": "gulp compile-extension:emmet",
|
|
"deps": "npm install @vscode/emmet-helper"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "20.x"
|
|
},
|
|
"dependencies": {
|
|
"@emmetio/css-parser": "ramya-rao-a/css-parser#vscode",
|
|
"@emmetio/html-matcher": "^0.3.3",
|
|
"@emmetio/math-expression": "^1.0.5",
|
|
"@vscode/emmet-helper": "^2.8.8",
|
|
"image-size": "~1.0.0",
|
|
"vscode-languageserver-textdocument": "^1.0.1"
|
|
},
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
}
|
|
}
|