mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Bumped up engines.vscode and @types/vscode.
- Use `1.55.0` so that the `gulp package` does not fail. - Fixed typos. Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
@ -16,7 +16,7 @@ This folder contains a sample VS code extension that shows how to use the packag
|
||||
|
||||
## Running the Sample
|
||||
|
||||
Localization values are only applied when running the gulp `build` task. During normally development which uses `tsc -watch` to compile no localization post processing happends. This speeds up development time.
|
||||
Localization values are only applied when running the gulp `build` task. During normally development which uses `tsc -watch` to compile no localization post processing happens. This speeds up development time.
|
||||
|
||||
1. Ensure that you have `gulp-cli` installed globally using `npm install --global gulp-cli`.
|
||||
1. Run `npm install` to bring in the dependencies.
|
||||
|
||||
@ -21,7 +21,7 @@ const inlineMap = true;
|
||||
const inlineSource = false;
|
||||
const outDest = 'out';
|
||||
|
||||
// If all VS Code langaues are support you can use nls.coreLanguages
|
||||
// If all VS Code languages are support you can use nls.coreLanguages
|
||||
const languages = [{ folderName: 'jpn', id: 'ja' }];
|
||||
|
||||
const cleanTask = function() {
|
||||
|
||||
6
i18n-sample/package-lock.json
generated
6
i18n-sample/package-lock.json
generated
@ -188,9 +188,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"@types/vscode": {
|
||||
"version": "1.34.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.34.0.tgz",
|
||||
"integrity": "sha512-t81rGr6aFw8TMap7UJdikC5ilOtL0yNr/pkovyyTy31fZ4XJehrxLMRh8nJuoOF3+g4rG9ljmtQo7tm6wyoaYA==",
|
||||
"version": "1.55.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.55.0.tgz",
|
||||
"integrity": "sha512-49hysH7jneTQoSC8TWbAi7nKK9Lc5osQNjmDHVosrcU8o3jecD9GrK0Qyul8q4aGPSXRfNGqIp9CBdb13akETg==",
|
||||
"dev": true
|
||||
},
|
||||
"@typescript-eslint/eslint-plugin": {
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
"version": "0.1.0",
|
||||
"publisher": "vscode-i18n-sample",
|
||||
"engines": {
|
||||
"vscode": "^1.32.0"
|
||||
"vscode": "^1.55.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
@ -36,7 +36,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^12.12.0",
|
||||
"@types/vscode": "^1.34.0",
|
||||
"@types/vscode": "^1.55.0",
|
||||
"@typescript-eslint/eslint-plugin": "^4.16.0",
|
||||
"@typescript-eslint/parser": "^4.16.0",
|
||||
"del": "^4.1.1",
|
||||
|
||||
Reference in New Issue
Block a user