1 Star 0 Fork 30

阿刚炖蛋 / NaiveUI

forked from Gitee 极速下载 / NaiveUI 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rollup.config.js 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
07akioni 提交于 2022-06-09 01:39 . refactor: config umd build
const path = require('path')
const merge = require('deepmerge')
const { defineConfig } = require('rollup')
const nodeResolve = require('@rollup/plugin-node-resolve').default
const babel = require('@rollup/plugin-babel').default
const replace = require('@rollup/plugin-replace')
const commonjs = require('@rollup/plugin-commonjs')
const esbuild = require('rollup-plugin-esbuild').default
const { terser } = require('rollup-plugin-terser')
const extensions = ['.mjs', '.js', '.json', '.ts']
const baseConfig = defineConfig({
input: path.resolve('./src/index.ts'),
plugins: [
nodeResolve({ extensions }),
esbuild({
target: 'esnext',
sourceMap: true
}),
babel({
extensions,
babelHelpers: 'bundled'
}),
commonjs()
],
external: ['vue'],
output: {
name: 'naive',
format: 'umd',
exports: 'named',
globals: {
vue: 'Vue'
}
}
})
const devConfig = defineConfig({
plugins: [
replace({
values: {
__DEV__: JSON.stringify(true),
'process.env.NODE_ENV': JSON.stringify('development')
},
preventAssignment: true
})
],
output: {
file: path.resolve('dist/index.js')
}
})
const prodConfig = defineConfig({
plugins: [
replace({
values: {
__DEV__: JSON.stringify(false),
'process.env.NODE_ENV': JSON.stringify('production')
},
preventAssignment: true
}),
terser()
],
output: {
file: path.resolve('dist/index.prod.js')
}
})
module.exports = [merge(baseConfig, devConfig), merge(baseConfig, prodConfig)]
TypeScript
1
https://gitee.com/agangdundan/NaiveUI.git
git@gitee.com:agangdundan/NaiveUI.git
agangdundan
NaiveUI
NaiveUI
main

搜索帮助

53164aa7 5694891 3bd8fe86 5694891