@jswork/next-rollup-banner
Version:
Rollup banner for next.
32 lines (29 loc) • 857 B
JavaScript
/*!
* name: @jswork/next-rollup-banner
* description: Rollup banner for next.
* homepage: https://github.com/afeiship/next-rollup-banner
* version: 1.0.15
* date: 2025-06-20 13:58:37
* license: MIT
*/
(function () {
var global = global || Function('return this')();
var nx = global.nx || require('@jswork/next');
var nxNiceComments = nx.niceComments || require('@jswork/next-nice-comments');
nx.rollupBanner = function () {
return nxNiceComments(
[
'name: <%= pkg.name %>',
'description: <%= pkg.description %>',
'homepage: <%= pkg.homepage %>',
'version: <%= pkg.version %>',
'date: ' + new Date().toISOString(),
'license: <%= pkg.license %>'
],
'raw'
);
};
if (typeof module !== 'undefined' && module.exports) {
module.exports = nx.rollupBanner;
}
})();