patch-pulse
Version:
Check for outdated npm dependencies
24 lines (23 loc) • 782 B
JavaScript
import chalk from 'chalk';
import { readFileSync } from 'fs';
import { dirname, join } from 'path';
import { fileURLToPath } from 'url';
import { createCenteredBox } from '../createCenteredBox.js';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
/**
* Displays the license information
*/
export function displayLicense() {
try {
const licenseContent = readFileSync(join(__dirname, '..', '..', 'LICENSE'), 'utf-8');
console.log(`${createCenteredBox('License', 60)}
${chalk.white(licenseContent)}`);
}
catch (error) {
console.error(chalk.red('Error reading LICENSE file:'), error);
console.log(chalk.yellow('License: MIT'));
process.exit(1);
}
}
//# sourceMappingURL=license.js.map