12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- const commonjs = require('@rollup/plugin-commonjs');
- const babel = require('@rollup/plugin-babel').default;
- const license = require('rollup-plugin-license');
- module.exports = [{
- input: 'src/marked.js',
- output: {
- file: 'lib/marked.umd.js',
- format: 'umd',
- name: 'marked'
- },
- 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(),
- babel({
- presets: [['@babel/preset-env', { loose: true }]]
- })
- ]
- },
- {
- input: 'src/marked.js',
- output: {
- file: 'lib/marked.cjs',
- format: 'cjs',
- name: 'marked'
- },
- 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(),
- babel({
- presets: [['@babel/preset-env', { loose: true }]]
- })
- ]
- }];
|