3 Star 0 Fork 1

Gitee 极速下载/multiple-selectsource

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/wenzhixin/multiple-select
克隆/下载
rollup.config.js 2.58 KB
一键复制 编辑 原始数据 按行查看 历史
文翼 提交于 2023-05-31 12:07 . Updated packages and eslint
import { globSync } 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 multiEntry from '@rollup/plugin-multi-entry'
import vue from 'rollup-plugin-vue'
let found
const env = process.argv.find(flag => {
if (found) {
return true
}
found = flag === '--config-env'
return false
})
const production = env === 'PRODUCTION'
const external = ['jquery']
const globals = {
jquery: 'jQuery'
}
const config = []
const plugins = [
inject({
include: '**/*.js',
exclude: 'node_modules/**',
$: 'jquery'
}),
resolve(),
commonjs(),
babel({
babelHelpers: 'bundled',
exclude: 'node_modules/**'
})
]
if (production) {
plugins.push(terser({
output: {
comments () {
return false
}
}
}))
}
let out = 'dist/multiple-select.js'
if (production) {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: 'src/multiple-select.js',
output: {
name: 'MultipleSelect',
file: out,
format: 'umd',
globals
},
external,
plugins
})
out = 'dist/multiple-select-es.js'
if (production) {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: 'src/multiple-select.js',
output: {
file: out,
format: 'esm'
},
plugins: plugins.slice(1)
})
out = 'dist/multiple-select-locale-all.js'
if (production) {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: 'src/locale/**/*.js',
output: {
name: 'MultipleSelect',
file: out,
format: 'umd',
globals
},
external,
plugins: [
multiEntry(),
...plugins
]
})
const files = globSync('src/locale/**/*.js')
for (const file of files) {
out = `dist/${file.replace('src/', '')}`
if (production) {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: file,
output: {
name: 'MultipleSelect',
file: out,
format: 'umd',
globals
},
external,
plugins
})
}
out = 'dist/multiple-select-vue.js'
if (production) {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: 'src/vue/index.js',
output: {
name: 'MultipleSelect',
file: out,
format: 'umd'
},
plugins: [
vue(),
...plugins
]
})
out = 'dist/multiple-select-vue-es.js'
if (production) {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: 'src/vue/MultipleSelect.vue',
output: {
name: 'MultipleSelect',
file: out,
format: 'esm'
},
plugins: [
vue(),
...plugins
]
})
export default config
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/multiple-selectsource.git
git@gitee.com:mirrors/multiple-selectsource.git
mirrors
multiple-selectsource
multiple-selectsource
develop

搜索帮助