forked from AlaskaAirlines/auro-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.mjs
46 lines (41 loc) · 818 Bytes
/
rollup.config.mjs
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
import { nodeResolve } from '@rollup/plugin-node-resolve';
import serve from 'rollup-plugin-serve';
const production = !process.env.ROLLUP_WATCH;
const modernConfig = {
input: {
['auro-datepicker__bundled']: './index.js',
},
output: {
format: 'esm',
dir: 'dist/'
},
plugins: [
nodeResolve(),
!production &&
serve({
open: true,
openPage: '/docs/'
})
]
};
const indexExamplesConfig = {
input: {
['index.min']: './demo/index.js',
},
output: {
format: 'esm',
dir: 'demo/'
},
plugins: [nodeResolve()]
};
const apiExamplesConfig = {
input: {
['api.min']: './demo/api.js',
},
output: {
format: 'esm',
dir: 'demo/'
},
plugins: [nodeResolve()]
};
export default [modernConfig, indexExamplesConfig, apiExamplesConfig];