mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 20:27:43 +01:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
|
|
import fs from 'fs';
|
||
|
|
import pkg from '../package.json' with { type: 'json' };
|
||
|
|
|
||
|
|
const license = fs.readFileSync('LICENSE', 'utf-8');
|
||
|
|
|
||
|
|
export function getJSBanner() {
|
||
|
|
return `/**
|
||
|
|
* @license ${pkg.name} v${pkg.version} - ${pkg.license}
|
||
|
|
*
|
||
|
|
* ${license.split('\n').join('\n * ')}
|
||
|
|
*/
|
||
|
|
`;
|
||
|
|
}
|