add banner

This commit is contained in:
Leifer
2022-12-01 10:27:18 +01:00
parent a5e15d9d84
commit a7e334ebe9
5 changed files with 19 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
const banner = require('../../config/banner.rollup.json')
const commonjs = require('@rollup/plugin-commonjs')
const { join } = require('path')
@@ -5,6 +6,7 @@ module.exports = [
{
input: join(__dirname, 'src', 'mock', 'index.js'),
output: {
banner: banner['banner.output'].join(''),
file: join(__dirname, 'lib', 'mock', 'index.cjs'),
format: 'cjs',
},
@@ -13,6 +15,7 @@ module.exports = [
{
input: join(__dirname, 'src', 'mongo', 'index.js'),
output: {
banner: banner['banner.output'].join(''),
file: join(__dirname, 'lib', 'mongo', 'index.cjs'),
format: 'cjs',
},