1 Star 1 Fork 0

LLDLZ/vuexSourceAnalyse

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
LLDLZ 提交于 2023-04-23 14:02 . vuex 3.6.2
import buble from '@rollup/plugin-buble'
import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import { terser } from 'rollup-plugin-terser'
import pkg from './package.json'
const banner = `/*!
* vuex v${pkg.version}
* (c) ${new Date().getFullYear()} Evan You
* @license MIT
*/`
export function createEntries(configs) {
return configs.map((c) => createEntry(c))
}
function createEntry(config) {
const c = {
input: config.input,
plugins: [],
output: {
banner,
file: config.file,
format: config.format
},
onwarn: (msg, warn) => {
if (!/Circular/.test(msg)) {
warn(msg)
}
}
}
if (config.format === 'umd') {
c.output.name = c.output.name || 'Vuex'
}
c.plugins.push(replace({
__VERSION__: pkg.version,
__DEV__: config.format !== 'umd' && !config.browser
? `(process.env.NODE_ENV !== 'production')`
: config.env !== 'production'
}))
if (config.transpile !== false) {
c.plugins.push(buble())
}
c.plugins.push(resolve())
c.plugins.push(commonjs())
if (config.minify) {
c.plugins.push(terser({ module: config.format === 'es' }))
}
return c
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/lldlz/vuex-source-analyse.git
git@gitee.com:lldlz/vuex-source-analyse.git
lldlz
vuex-source-analyse
vuexSourceAnalyse
master

搜索帮助