You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import fs from 'fs'
|
|
import path from 'path'
|
|
|
|
const rootPath = path.resolve(__dirname, '../')
|
|
|
|
function optimizeAntdComponents(moduleName: string): string[] {
|
|
const moduleESPath = `${moduleName}/es`
|
|
const nodeModulePath = `./node_modules/${moduleESPath}`
|
|
const includes: string[] = [moduleESPath]
|
|
|
|
const folders = fs.readdirSync(
|
|
path.resolve(rootPath, nodeModulePath)
|
|
)
|
|
|
|
folders.map(name => {
|
|
const folderName = path.resolve(
|
|
rootPath,
|
|
nodeModulePath,
|
|
name
|
|
)
|
|
let stat = fs.lstatSync(folderName)
|
|
if (stat.isDirectory()) {
|
|
let styleFolder = path.resolve(folderName, 'style')
|
|
if (fs.existsSync((styleFolder))) {
|
|
let _stat = fs.lstatSync(styleFolder)
|
|
if (_stat.isDirectory()) {
|
|
includes.push(`${moduleESPath}/${name}/style`)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
return includes
|
|
}
|
|
|
|
export function optimizeDeps() {
|
|
return {
|
|
name: "optimizeDeps",
|
|
configResolved: async (config) => {
|
|
const components = [
|
|
...optimizeAntdComponents('ant-design-vue'),
|
|
...optimizeAntdComponents('jetlinks-ui-components')
|
|
]
|
|
let concat = config.optimizeDeps.include.concat(components)
|
|
config.optimizeDeps.include = Array.from(new Set(concat))
|
|
}
|
|
}
|
|
} |