mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-04-01 22:32:40 +08:00
25 lines
481 B
JavaScript
25 lines
481 B
JavaScript
const banner = require('rollup-plugin-banner2');
|
|
|
|
|
|
const licenseText = `/*!
|
|
* Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
* Copyright 2024 Fonticons, Inc.
|
|
*/
|
|
`;
|
|
|
|
module.exports = [
|
|
|
|
{
|
|
input: 'index.js',
|
|
output: {
|
|
file: 'index.mjs',
|
|
format: 'cjs',
|
|
},
|
|
plugins: [
|
|
banner(() => licenseText),
|
|
|
|
],
|
|
},
|
|
];
|