-
Notifications
You must be signed in to change notification settings - Fork 31
/
rollup.config.js
40 lines (37 loc) · 978 Bytes
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const typescript = require('rollup-plugin-typescript2')
const { terser } = require('rollup-plugin-terser')
const { nodeResolve } = require('@rollup/plugin-node-resolve')
const commonjs = require('@rollup/plugin-commonjs')
const pkg = require('./package.json')
const defaultPlugins = [
typescript(),
terser({
format: {
comments: false,
ecma: 5,
},
}),
]
module.exports = [
{
input: './lib/index.ts',
output: {
file: pkg.main,
format: 'umd',
name: 'contentfulExtension',
footer: 'globalThis.contentfulApp = globalThis.contentfulExtension;',
},
external: ['contentful-management'],
plugins: defaultPlugins,
},
{
input: './lib/index.ts',
output: {
file: pkg.unpkg,
format: 'umd',
name: 'contentfulExtension',
footer: 'globalThis.contentfulApp = globalThis.contentfulExtension;',
},
plugins: [...defaultPlugins, nodeResolve({ browser: true }), commonjs()],
},
]