-
Notifications
You must be signed in to change notification settings - Fork 3
/
rollup.config.js
72 lines (62 loc) · 2.28 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import path from 'path'
import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import ts from 'rollup-plugin-typescript2'
import { terser } from 'rollup-plugin-terser'
export const configs = [
{ input: 'src/index.ts', file: 'dist/vuex-orm-soft-delete.esm.js', format: 'es', browser: true, env: 'development' },
{ input: 'src/index.ts', file: 'dist/vuex-orm-soft-delete.esm.prod.js', format: 'es', browser: true, env: 'production' },
{ input: 'src/index.ts', file: 'dist/vuex-orm-soft-delete.esm-bundler.js', format: 'es', env: 'development' },
{ input: 'src/index.cjs.ts', file: 'dist/vuex-orm-soft-delete.global.js', format: 'iife', env: 'development' },
{ input: 'src/index.cjs.ts', file: 'dist/vuex-orm-soft-delete.global.prod.js', format: 'iife', minify: true, env: 'production' },
{ input: 'src/index.cjs.ts', file: 'dist/vuex-orm-soft-delete.cjs.js', format: 'cjs', env: 'development' }
]
function createEntries() {
return configs.map((c) => createEntry(c))
}
function createEntry(config) {
const c = {
input: config.input,
plugins: [],
output: {
file: config.file,
format: config.format,
globals: {
vue: 'Vue'
}
},
onwarn: (msg, warn) => {
if (!/Circular/.test(msg)) {
warn(msg)
}
}
}
if (config.format === 'iife') {
c.output.name = 'VuexORMSoftDelete'
}
c.plugins.push(replace({
__DEV__: config.format === 'es' && !config.browser
? `(process.env.NODE_ENV !== 'production')`
: config.env !== 'production'
}))
c.plugins.push(resolve())
c.plugins.push(commonjs())
c.plugins.push(ts({
check: config.format === 'es' && config.browser && config.env === 'development',
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
cacheRoot: path.resolve(__dirname, 'node_modules/.rts2_cache'),
tsconfigOverride: {
compilerOptions: {
declaration: config.format === 'es' && config.browser && config.env === 'development',
target: config.format === 'iife' || config.format === 'cjs' ? 'es5' : 'es2018'
},
exclude: ['test']
}
}))
if (config.minify) {
c.plugins.push(terser({ module: config.format === 'es' }))
}
return c
}
export default createEntries()