diff --git a/i18n-sample/README.md b/i18n-sample/README.md index 38b3f1c6..d734aae0 100644 --- a/i18n-sample/README.md +++ b/i18n-sample/README.md @@ -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. diff --git a/i18n-sample/gulpfile.js b/i18n-sample/gulpfile.js index 457ed247..f6039dd3 100644 --- a/i18n-sample/gulpfile.js +++ b/i18n-sample/gulpfile.js @@ -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() { diff --git a/i18n-sample/package-lock.json b/i18n-sample/package-lock.json index 8f43088b..a475f5dd 100644 --- a/i18n-sample/package-lock.json +++ b/i18n-sample/package-lock.json @@ -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": { diff --git a/i18n-sample/package.json b/i18n-sample/package.json index 86ffc44a..e3fa804d 100644 --- a/i18n-sample/package.json +++ b/i18n-sample/package.json @@ -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",