mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Merge pull request #403 from kittaakos/i18n
[i18n-sample]: Bumped up `engines.vscode` and `@types/vscode`.
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": {
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
||||
},
|
||||
"engines": {
|
||||
"vscode": "^1.32.0"
|
||||
"vscode": "^1.55.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
@ -40,7 +40,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