1 Star 0 Fork 0

CodeLeader/bootstrap-table

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 2.30 KB
一键复制 编辑 原始数据 按行查看 历史
文翼 提交于 2021-04-10 16:36 +08:00 . Added local develop readme
import glob from 'glob'
import babel from 'rollup-plugin-babel'
import resolve 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 = glob.sync('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'
}),
resolve(),
commonjs(),
babel({
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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/CodeLeader/bootstrap-table.git
git@gitee.com:CodeLeader/bootstrap-table.git
CodeLeader
bootstrap-table
bootstrap-table
develop

搜索帮助