blob: f60e648681168a160111270edc6056ae03b0621c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only
import { execSync } from 'child_process';
import { program } from 'commander';
function main() {
program.option('-d, --dir <string>', 'Path to target extension root');
program.option('-w, --write', 'Write the changes to the files');
program.parse(process.argv);
const options = program.opts();
const targetExtensionRoot = options.dir as string;
const cmd = options.write ? 'prettierWrite' : 'prettierCheck';
execSync(`npm run ${cmd}`, {
cwd: targetExtensionRoot,
stdio: 'inherit'
});
}
main();
|