* update dependencies

Signed-off-by: Yan Zhang <yanzh@microsoft.com>

* skip ts lib check

Signed-off-by: Yan Zhang <yanzh@microsoft.com>
This commit is contained in:
Yan Zhang 2020-05-06 20:11:35 +08:00 коммит произвёл GitHub
Родитель b57a84afd5
Коммит 66a3949bf0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 375 добавлений и 279 удалений

620
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -525,37 +525,37 @@
"devDependencies": {
"@types/fs-extra": "^4.0.9",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.136",
"@types/md5": "^2.1.33",
"@types/lodash": "^4.14.150",
"@types/md5": "^2.2.0",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.13",
"@types/node": "^10.17.21",
"@types/vscode": "1.43.0",
"@types/which": "^1.3.1",
"@types/xml2js": "^0.4.4",
"glob": "^7.1.4",
"@types/which": "^1.3.2",
"@types/xml2js": "^0.4.5",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"mocha": "7.1.1",
"ts-loader": "^4.4.2",
"tslint": "^5.18.0",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.9.2",
"vscode-test": "^1.0.2",
"webpack": "^4.42.0",
"vscode-test": "^1.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"axios": "^0.19.0",
"axios": "^0.19.2",
"fast-glob": "^2.2.7",
"fs-extra": "^4.0.3",
"get-port": "^4.2.0",
"lodash": "^4.17.15",
"md5": "^2.2.1",
"minimatch": "^3.0.4",
"vscode-extension-telemetry-wrapper": "^0.4.0",
"vscode-languageserver-protocol": "^3.14.1",
"vscode-extension-telemetry-wrapper": "0.7.1",
"vscode-languageserver-protocol": "^3.15.3",
"which": "^1.3.1",
"xml-zero-lexer": "^2.0.5",
"xml2js": "^0.4.19"
"xml-zero-lexer": "^2.1.0",
"xml2js": "^0.4.23"
}
}

Просмотреть файл

@ -33,7 +33,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
await loadPackageInfo(context);
// Usage data statistics.
if (getAiKey()) {
initialize(getExtensionId(), getExtensionVersion(), getAiKey());
initialize(getExtensionId(), getExtensionVersion(), getAiKey(), { firstParty: true });
}
await instrumentOperation("activation", doActivate)(context);
}

Просмотреть файл

@ -1,6 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
import Lexx from "xml-zero-lexer";
export enum XmlTagName {

Просмотреть файл

@ -12,7 +12,8 @@
"es6"
],
"sourceMap": true,
"rootDir": "src"
"rootDir": "src",
"skipLibCheck": true
},
"exclude": [
"node_modules",