mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 02:08:47 +00:00
* Run our build scripts directly as typescript #277567 Follow up on #276864 For #277526 * Remove a few more ts-node references * Fix linux and script reference * Remove `_build-script` ref * Fix script missing closing quote * use type only import * Fix export * Make sure to run copy-policy-dto * Make sure we run the copy-policy-dto script * Enable `verbatimModuleSyntax` * Pipelines fixes * Try adding explicit ext to path * Fix bad edit * Revert extra `--` --------- Co-authored-by: João Moreno <joaomoreno@users.noreply.github.com>
42 lines
1.6 KiB
TypeScript
42 lines
1.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import crypto from 'crypto';
|
|
import { dirs } from '../../npm/dirs.js';
|
|
|
|
const ROOT = path.join(import.meta.dirname, '../../../');
|
|
|
|
const shasum = crypto.createHash('sha256');
|
|
|
|
shasum.update(fs.readFileSync(path.join(ROOT, 'build/.cachesalt')));
|
|
shasum.update(fs.readFileSync(path.join(ROOT, '.npmrc')));
|
|
shasum.update(fs.readFileSync(path.join(ROOT, 'build', '.npmrc')));
|
|
shasum.update(fs.readFileSync(path.join(ROOT, 'remote', '.npmrc')));
|
|
|
|
// Add `package.json` and `package-lock.json` files
|
|
for (const dir of dirs) {
|
|
const packageJsonPath = path.join(ROOT, dir, 'package.json');
|
|
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath).toString());
|
|
const relevantPackageJsonSections = {
|
|
dependencies: packageJson.dependencies,
|
|
devDependencies: packageJson.devDependencies,
|
|
optionalDependencies: packageJson.optionalDependencies,
|
|
resolutions: packageJson.resolutions,
|
|
distro: packageJson.distro
|
|
};
|
|
shasum.update(JSON.stringify(relevantPackageJsonSections));
|
|
|
|
const packageLockPath = path.join(ROOT, dir, 'package-lock.json');
|
|
shasum.update(fs.readFileSync(packageLockPath));
|
|
}
|
|
|
|
// Add any other command line arguments
|
|
for (let i = 2; i < process.argv.length; i++) {
|
|
shasum.update(process.argv[i]);
|
|
}
|
|
|
|
process.stdout.write(shasum.digest('hex'));
|