加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.build.taro.ts 2.96 KB
一键复制 编辑 原始数据 按行查看 历史
import { defineConfig } from 'vite'
import dts from 'vite-plugin-dts'
import fse from 'fs-extra'
import path from 'path'
import config from './package.json'
import componentsConfig from './src/config.json'
const banner = `/*!
* ${config.name} v${config.version} ${new Date()}
* (c) 2023 @jdf2e.
* Released under the MIT License.
*/`
const { resolve } = path
let fileStr = `@import "@/styles/variables.scss";`
const projectID = process.env.VITE_APP_PROJECT_ID
if (projectID) {
fileStr = `@import '@/styles/variables-${projectID}.scss';`
}
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: [{ find: '@', replacement: resolve(__dirname, './src') }],
},
plugins: [
dts({
outDir: 'dist/types',
clearPureImport: false,
exclude: [
'node_modules/**',
'src/sites/**',
'src/**/demo.tsx',
'src/**/demo.taro.tsx',
'src/**/*.spec.tsx',
],
beforeWriteFile(filePath, content) {
return { filePath: filePath.replace('src/', ''), content }
},
afterBuild: () => {
fse
.readFile(
'./dist/types/packages/nutui.taro.react.build.d.ts',
'utf-8'
)
.then((data: string) => {
fse.remove('./dist/types/packages/nutui.taro.react.build.d.ts')
const types: string[] = []
componentsConfig.nav.forEach((item: any) => {
item.packages.forEach((element: any) => {
const { name, show, exportEmpty } = element
if (show || exportEmpty) {
const lowerName = name.toLowerCase()
if (lowerName === 'icon') return
types.push(
`export { ${name}Props } from './packages/${lowerName}/${lowerName}.taro'`
)
}
})
})
fse.outputFile(
'./dist/types/index.d.ts',
`${types.join('\n')}\n${data.replace(/\.\.\//g, './')}`
)
})
},
}),
],
build: {
minify: false,
emptyOutDir: true,
rollupOptions: {
// 请确保外部化那些你的库中不需要的依赖
external: ['react', 'react-dom', '@tarojs/taro', '@tarojs/components'],
output: [
{
banner,
// 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量
globals: {
react: 'React',
'react-dom': 'ReactDOM',
},
format: 'es',
entryFileNames: 'nutui.react.es.js',
},
{
banner,
// 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量
globals: {
react: 'React',
'react-dom': 'ReactDOM',
},
name: 'nutui.react',
format: 'umd',
entryFileNames: 'nutui.react.umd.js',
},
],
},
lib: {
entry: 'src/packages/nutui.taro.react.build.ts',
},
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化