externalize strings

This commit is contained in:
Erich Gamma 2018-02-28 12:27:35 +01:00
parent 74743ed01d
commit bc540f119d
2 changed files with 5 additions and 3 deletions

View file

@ -81,11 +81,11 @@
"properties": {
"script": {
"type": "string",
"description": "The npm script to customize"
"description": "%taskdef.script%"
},
"path": {
"type": "string",
"description": "The path to the folder of the package.json file that provides the script. Can be ommitted."
"description": "%taskdef.path%"
}
}
}

View file

@ -4,5 +4,7 @@
"config.npm.autoDetect": "Controls whether auto detection of npm scripts is on or off. Default is on.",
"config.npm.runSilent": "Run npm commands with the `--silent` option.",
"config.npm.packageManager": "The package manager used to run scripts.",
"npm.parseError": "Npm task detection: failed to parse the file {0}"
"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 ommitted."
}