1234567891011121314151617181920212223242526 |
- 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()
- ]
- };
|