1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/packages/tools/packageJsonLint.ts

18 lines
524 B
TypeScript

import { execCommand, getRootDir } from '@joplin/utils';
import { chdir } from 'process';
const main = async () => {
// Having no output seems to cause lint-staged to fail on some systems.
// Add a console.log statement to work around this issue.
console.log('Linting package.json files...');
const rootDir = await getRootDir();
chdir(rootDir);
await execCommand('yarn run npmPkgJsonLint --configFile .npmpackagejsonlintrc.json --quiet .');
};
main().catch((error) => {
console.error(error);
process.exit(1);
});