|
1 | 1 | { |
2 | 2 | "description": "Extension to add task support for npm scripts.", |
3 | | - "displayName": "Npm support for VS Code", |
| 3 | + "displayName": "NPM support for VS Code", |
4 | 4 | "config.npm.autoDetect": "Controls whether npm scripts should be automatically detected.", |
5 | 5 | "config.npm.runSilent": "Run npm commands with the `--silent` option.", |
6 | 6 | "config.npm.packageManager": "The package manager used to run scripts.", |
7 | 7 | "config.npm.exclude": "Configure glob patterns for folders that should be excluded from automatic script detection.", |
8 | 8 | "config.npm.enableScriptExplorer": "Enable an explorer view for npm scripts when there is no top-level 'package.json' file.", |
9 | | - "config.npm.scriptExplorerAction": "The default click action used in the scripts explorer: `open` or `run`, the default is `open`.", |
| 9 | + "config.npm.scriptExplorerAction": "The default click action used in the npm scripts explorer: `open` or `run`, the default is `open`.", |
| 10 | + "config.npm.enableRunFromFolder": "Enable running NPM scripts contained in a folder from the Explorer context menu.", |
10 | 11 | "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.", |
11 | 12 | "npm.parseError": "Npm task detection: failed to parse the file {0}", |
12 | 13 | "taskdef.script": "The npm script to customize.", |
13 | 14 | "taskdef.path": "The path to the folder of the package.json file that provides the script. Can be omitted.", |
14 | | - "view.name": "Npm Scripts", |
| 15 | + "view.name": "NPM Scripts", |
15 | 16 | "command.refresh": "Refresh", |
16 | 17 | "command.run": "Run", |
17 | 18 | "command.debug": "Debug", |
18 | 19 | "command.openScript": "Open", |
19 | 20 | "command.runInstall": "Run Install", |
20 | | - "command.runSelectedScript": "Run Script" |
| 21 | + "command.runSelectedScript": "Run Script", |
| 22 | + "command.runScriptFromFolder": "Run NPM Script in Folder..." |
21 | 23 | } |
0 commit comments