forked from babangsund/cypress-keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
45 lines (42 loc) · 980 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
import { terser } from 'rollup-plugin-terser';
import commonjs from 'rollup-plugin-commonjs';
import typescript from 'rollup-plugin-typescript';
import pkg from './package.json';
const input = 'src/index.ts';
const globals = { cypress: 'Cypress' };
const external = Object.keys(globals);
const license = {
output: {
preamble: [
'/**',
' * cypress-keycloak v' + process.env.npm_package_version,
' *',
' * Copyright (c) 2019 babangsund',
' *',
' * This source code is licensed under the MIT license found in the',
' * LICENSE file in the root directory of this source tree.',
' */',
].join('\n'),
},
};
export default {
input,
external,
plugins: [
commonjs(),
typescript(),
process.env.NODE_ENV === 'production' && terser(license),
],
output: [
{
globals,
format: 'esm',
file: pkg.module,
},
{
globals,
format: 'cjs',
file: pkg.main,
},
],
};