46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
const fs = require('fs');
|
|
|
|
function checkLockFiles() {
|
|
const errors = [];
|
|
if (fs.existsSync('package-lock.json')) {
|
|
errors.push(
|
|
'Invalid occurence of "package-lock.json" file. Please remove it and use only "yarn.lock"'
|
|
);
|
|
}
|
|
if (fs.existsSync('pnpm-lock.yaml')) {
|
|
errors.push(
|
|
'Invalid occurence of "pnpm-lock.yaml" file. Please remove it and use only "yarn.lock"'
|
|
);
|
|
}
|
|
try {
|
|
const content = fs.readFileSync('yarn.lock', 'utf-8');
|
|
if (content.match(/localhost:487/)) {
|
|
errors.push(
|
|
'The "yarn.lock" has reference to local yarn repository ("localhost:4873"). Please use "registry.yarnpkg.com" in "yarn.lock"'
|
|
);
|
|
}
|
|
} catch {
|
|
errors.push('The "yarn.lock" does not exist or cannot be read');
|
|
}
|
|
try {
|
|
require('child_process').execSync(
|
|
'yarn lockfile-lint -s -n -p yarn.lock -a hosts yarn npm',
|
|
{ encoding: 'utf-8', stdio: 'pipe' }
|
|
);
|
|
} catch ({ stderr }) {
|
|
const errorLines = stderr.split('\n').slice(0, -4).join('\n');
|
|
errors.push(errorLines);
|
|
}
|
|
return errors;
|
|
}
|
|
|
|
console.log('🔒🔒🔒 Validating lock files 🔒🔒🔒\n');
|
|
const invalid = checkLockFiles();
|
|
if (invalid.length > 0) {
|
|
invalid.forEach((e) => console.log(e));
|
|
process.exit(1);
|
|
} else {
|
|
console.log('Lock file is valid 👍');
|
|
process.exit(0);
|
|
}
|