mirror of
https://github.com/microsoft/pyright.git
synced 2024-11-03 21:30:08 +03:00
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
//@ts-check
|
|
|
|
// Lerna doesn't do a good job preserving the indentation in lock files.
|
|
// Check that the lock files are still indented correctly, otherwise
|
|
// the change will cause problems with merging and the updateDeps script.
|
|
|
|
const detectIndent = require('detect-indent');
|
|
const { promises: fsAsync } = require('fs');
|
|
const util = require('util');
|
|
const glob = util.promisify(require('glob'));
|
|
|
|
async function findPackageLocks() {
|
|
const lernaFile = await fsAsync.readFile('lerna.json', 'utf-8');
|
|
|
|
/** @type {{ packages: string[] }} */
|
|
const lernaConfig = JSON.parse(lernaFile);
|
|
|
|
const matches = await Promise.all(lernaConfig.packages.map((pattern) => glob(pattern + '/package-lock.json')));
|
|
return ['package-lock.json'].concat(...matches);
|
|
}
|
|
|
|
async function main() {
|
|
const locks = await findPackageLocks();
|
|
|
|
let ok = true;
|
|
|
|
for (const filepath of locks) {
|
|
const input = await fsAsync.readFile(filepath, 'utf-8');
|
|
const indent = detectIndent(input);
|
|
|
|
if (indent.indent !== ' ') {
|
|
ok = false;
|
|
console.error(`${filepath} has invalid indent "${indent.indent}"`);
|
|
}
|
|
}
|
|
|
|
if (!ok) {
|
|
console.error('Lerna may have modified package-lock.json during bootstrap.');
|
|
console.error('You may need to revert any package-lock changes and rerun install:all.');
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
main();
|