mirror of
https://github.com/markedjs/marked
synced 2024-11-23 01:38:57 +00:00
4736f3ebba
Co-Authored-By: Steven <steven@ceriously.com>
27 lines
553 B
JavaScript
27 lines
553 B
JavaScript
const commonjs = require('rollup-plugin-commonjs');
|
|
const license = require('rollup-plugin-license');
|
|
|
|
module.exports = {
|
|
input: 'src/marked.js',
|
|
output: {
|
|
file: 'lib/marked.esm.js',
|
|
format: 'esm'
|
|
},
|
|
plugins: [
|
|
license({
|
|
banner: `
|
|
DO NOT EDIT THIS FILE
|
|
The code in this file is generated from files in ./src/
|
|
`
|
|
}),
|
|
license({
|
|
banner: `
|
|
marked - a markdown parser
|
|
Copyright (c) 2011-${new Date().getFullYear()}, Christopher Jeffrey. (MIT Licensed)
|
|
https://github.com/markedjs/marked
|
|
`
|
|
}),
|
|
commonjs()
|
|
]
|
|
};
|