Update dependencies

This commit is contained in:
Dirk Baeumer
2022-03-01 09:49:12 +01:00
parent 0d36653b0d
commit f6592e6abc
5 changed files with 8856 additions and 866 deletions

18
i18n-sample/License.txt Normal file
View File

@ -0,0 +1,18 @@
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -29,7 +29,7 @@ See the demo.gif file in this repository for a screencast.
## How to translate our extension
VS Code itself uses [Transifex](https://www.transifex.com/) to manage its translations. This might be an option for your extension as well, however none of the nls tooling provided by `vscode-nls` or `vscode-nls-dev` requires Transifex as its translation platform. So you are free to choose a different one.
VS Code doesn't recommend a translation platform. None of the nls tooling provided by `vscode-nls` or `vscode-nls-dev` requires a specific translation platform. So you are free to choose the one you like.
## What happens behind the scenes

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"engines": {
"vscode": "^1.55.0"
"vscode": "^1.63.0"
},
"categories": [
"Other"
@ -40,22 +40,22 @@
},
"devDependencies": {
"@types/node": "^14.17.0",
"@types/vscode": "^1.55.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"del": "^6.0.0",
"eslint": "^7.32.0",
"eslint": "^8.10.0",
"event-stream": "^4.0.1",
"gulp": "^4.0.2",
"gulp-filter": "^5.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-filter": "^7.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"run-sequence": "^2.2.1",
"typescript": "^4.5.5",
"vsce": "^1.96.1",
"vscode-nls-dev": "^3.3.2"
"typescript": "^4.6.2",
"vsce": "^2.6.7",
"vscode-nls-dev": "^4.0.0"
},
"dependencies": {
"vscode-nls": "^3.2.5"
"vscode-nls": "^5.0.0"
}
}

View File

@ -25,4 +25,5 @@ export function activate(context: vscode.ExtensionContext) {
}
export function deactivate() {
// Empty be design.
}