mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-21 14:59:20 +01:00
12 lines
308 B
JavaScript
12 lines
308 B
JavaScript
|
|
import pkg from '../package.json' assert { type: 'json' };
|
||
|
|
|
||
|
|
export function getJSBanner() {
|
||
|
|
return `/**
|
||
|
|
* @license ${pkg.name} v${pkg.version} - ${pkg.license}
|
||
|
|
*
|
||
|
|
* This source code is licensed under the ${pkg.license} license.
|
||
|
|
* See the LICENSE file in the root directory of this source tree.
|
||
|
|
*/
|
||
|
|
`;
|
||
|
|
}
|