mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-12 10:45:10 +08:00
28 lines
879 B
TypeScript
28 lines
879 B
TypeScript
import { compPackage } from './paths'
|
|
import { getWorkspacePackages, getPackageDependencies } from './pkg'
|
|
|
|
import type { OutputOptions, RollupBuild } from 'rollup'
|
|
|
|
export const generateExternal = async (options: { full: boolean }) => {
|
|
const monoPackages = (await getWorkspacePackages())
|
|
.map((pkg) => pkg.manifest.name)
|
|
// filter root package
|
|
.filter((name): name is string => !!name)
|
|
|
|
return (id: string) => {
|
|
const packages: string[] = ['vue']
|
|
if (!options.full) {
|
|
const depPackages = getPackageDependencies(compPackage)
|
|
packages.push('@vue', ...monoPackages, ...depPackages)
|
|
}
|
|
|
|
return [...new Set(packages)].some(
|
|
(pkg) => id === pkg || id.startsWith(`${pkg}/`)
|
|
)
|
|
}
|
|
}
|
|
|
|
export function writeBundles(bundle: RollupBuild, options: OutputOptions[]) {
|
|
return Promise.all(options.map((option) => bundle.write(option)))
|
|
}
|