mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
4645305f14
* Auto-detect Bun by looking for `bun.lockb` lockfile * Extend `npm.packageManager` setting * Update documentation Signed-off-by: Marvin A. Ruder <signed@mruder.dev>
33 lines
2.5 KiB
JSON
33 lines
2.5 KiB
JSON
{
|
|
"description": "Extension to add task support for npm scripts.",
|
|
"displayName": "NPM support for VS Code",
|
|
"workspaceTrust": "This extension executes tasks, which require trust to run.",
|
|
"virtualWorkspaces": "Functionality that requires running the 'npm' command is not available in virtual workspaces.",
|
|
"config.npm.autoDetect": "Controls whether npm scripts should be automatically detected.",
|
|
"config.npm.runSilent": "Run npm commands with the `--silent` option.",
|
|
"config.npm.packageManager": "The package manager used to run scripts.",
|
|
"config.npm.packageManager.npm": "Use npm as the package manager for running scripts.",
|
|
"config.npm.packageManager.yarn": "Use yarn as the package manager for running scripts.",
|
|
"config.npm.packageManager.pnpm": "Use pnpm as the package manager for running scripts.",
|
|
"config.npm.packageManager.bun": "Use bun as the package manager for running scripts.",
|
|
"config.npm.packageManager.auto": "Auto-detect which package manager to use for running scripts based on lock files and installed package managers.",
|
|
"config.npm.exclude": "Configure glob patterns for folders that should be excluded from automatic script detection.",
|
|
"config.npm.enableScriptExplorer": "Enable an explorer view for npm scripts when there is no top-level 'package.json' file.",
|
|
"config.npm.scriptExplorerAction": "The default click action used in the NPM Scripts Explorer: `open` or `run`, the default is `open`.",
|
|
"config.npm.scriptExplorerExclude": "An array of regular expressions that indicate which scripts should be excluded from the NPM Scripts view.",
|
|
"config.npm.enableRunFromFolder": "Enable running npm scripts contained in a folder from the Explorer context menu.",
|
|
"config.npm.fetchOnlinePackageInfo": "Fetch data from https://registry.npmjs.org and https://registry.bower.io to provide auto-completion and information on hover features on npm dependencies.",
|
|
"config.npm.scriptHover": "Display hover with 'Run' and 'Debug' commands for scripts.",
|
|
"npm.parseError": "Npm task detection: failed to parse the file {0}",
|
|
"taskdef.script": "The npm script to customize.",
|
|
"taskdef.path": "The path to the folder of the package.json file that provides the script. Can be omitted.",
|
|
"view.name": "NPM Scripts",
|
|
"command.refresh": "Refresh",
|
|
"command.run": "Run",
|
|
"command.debug": "Debug",
|
|
"command.openScript": "Open",
|
|
"command.runInstall": "Run Install",
|
|
"command.runSelectedScript": "Run Script",
|
|
"command.runScriptFromFolder": "Run NPM Script in Folder...",
|
|
"command.packageManager": "Get Configured Package Manager"
|
|
}
|