-
Notifications
You must be signed in to change notification settings - Fork 158
/
rollup.config.js
47 lines (43 loc) · 993 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
41
42
43
44
45
46
47
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import terser from '@rollup/plugin-terser';
export default [
// Browser-friendly UMD build
{
input: 'src/esc-pos-encoder.js',
output: {
name: 'EscPosEncoder',
file: 'dist/esc-pos-encoder.umd.js',
sourcemap: true,
format: 'umd'
},
plugins: [
resolve({ browser: true }),
commonjs(),
terser()
]
},
// Browser-friendly ES module build
{
input: 'src/esc-pos-encoder.js',
output: {
file: 'dist/esc-pos-encoder.esm.js',
sourcemap: true,
format: 'es'
},
plugins: [
resolve({ browser: true }),
commonjs(),
terser()
]
},
// CommonJS (for Node) and ES module (for bundlers) build
{
input: 'src/esc-pos-encoder.js',
external: ['@point-of-sale/receipt-printer-encoder'],
output: [
{ file: 'dist/esc-pos-encoder.cjs', format: 'cjs' },
{ file: 'dist/esc-pos-encoder.mjs', format: 'es' }
]
}
];