Update all dependencies

This commit is contained in:
Alex Dima 2021-11-16 09:23:03 +01:00
parent 5bb2a27249
commit ed1ee25b7b
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
19 changed files with 2480 additions and 2397 deletions

23
build/npm/removeAll.js Normal file
View file

@ -0,0 +1,23 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
//@ts-check
const glob = require('glob');
const path = require('path');
const fs = require('fs');
const REPO_ROOT = path.join(__dirname, '../../');
const files = glob.sync('**/package-lock.json', {
cwd: REPO_ROOT,
ignore: ['**/node_modules/**', '**/out/**', '**/release/**']
});
for (const file of files) {
const filePath = path.join(REPO_ROOT, file);
console.log(`Deleting ${file}...`);
fs.unlinkSync(filePath);
}