forked from wenzhixin/bootstrap-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
126 lines (117 loc) · 2.36 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import { globSync } from 'glob'
import { babel } from '@rollup/plugin-babel'
import { nodeResolve } from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import { terser } from 'rollup-plugin-terser'
import inject from '@rollup/plugin-inject'
import copy from 'rollup-plugin-copy'
import multiEntry from '@rollup/plugin-multi-entry'
import vue from 'rollup-plugin-vue'
const files = globSync('src/**/*.js', {
ignore: [
'src/constants/**',
'src/utils/**',
'src/virtual-scroll/**',
'src/vue/**'
]
})
const external = ['jquery']
const globals = {
jquery: 'jQuery'
}
const config = []
const plugins = [
inject({
include: '**/*.js',
exclude: 'node_modules/**',
$: 'jquery'
}),
nodeResolve(),
commonjs(),
babel({
babelHelpers: 'bundled',
exclude: 'node_modules/**'
}),
copy({
targets: [
{ src: 'src/themes/bootstrap-table/fonts/*', dest: 'dist/themes/bootstrap-table/fonts' }
]
})
]
if (process.env.NODE_ENV === 'production') {
plugins.push(terser({
output: {
comments () {
return false
}
}
}))
}
for (const file of files) {
let out = `dist/${file.replace('src/', '')}`
if (process.env.NODE_ENV === 'production') {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: file,
output: {
name: 'BootstrapTable',
file: out,
format: 'umd',
globals
},
external,
plugins
})
}
let out = 'dist/bootstrap-table-locale-all.js'
if (process.env.NODE_ENV === 'production') {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: 'src/locale/**/*.js',
output: {
name: 'BootstrapTable',
file: out,
format: 'umd',
globals
},
external,
plugins: [
multiEntry(),
...plugins
]
})
out = 'dist/bootstrap-table-vue.js'
if (process.env.NODE_ENV === 'production') {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: 'src/vue/index.js',
output: {
name: 'BootstrapTable',
file: out,
format: 'umd'
},
plugins: [
vue(),
...plugins
]
})
out = 'dist/bootstrap-table-vue.esm.js'
if (process.env.NODE_ENV === 'production') {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: 'src/vue/BootstrapTable.vue',
output: {
name: 'BootstrapTable',
file: out,
format: 'esm'
},
plugins: [
vue(),
...plugins
]
})
export default config