2019-11-06 20:00:06 +00:00
|
|
|
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: `
|
2019-11-06 21:56:29 +00:00
|
|
|
DO NOT EDIT THIS FILE
|
|
|
|
The code in this file is generated from files in ./src/
|
2019-11-06 22:12:58 +00:00
|
|
|
`
|
2019-11-06 21:56:29 +00:00
|
|
|
}),
|
|
|
|
license({
|
|
|
|
banner: `
|
2019-11-06 20:00:06 +00:00
|
|
|
marked - a markdown parser
|
2019-11-11 17:24:05 +00:00
|
|
|
Copyright (c) 2011-${new Date().getFullYear()}, Christopher Jeffrey. (MIT Licensed)
|
2019-11-06 20:00:06 +00:00
|
|
|
https://github.com/markedjs/marked
|
|
|
|
`
|
|
|
|
}),
|
|
|
|
commonjs()
|
|
|
|
]
|
|
|
|
};
|