feat(@vant/cli): generate cjs output (#9942)

This commit is contained in:
neverland 2021-11-26 10:43:09 +08:00 committed by GitHub
parent 249a8b64e2
commit cfcc84ff25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,7 @@ export function getViteConfigForPackage(minify: boolean): InlineConfig {
lib: {
name,
entry: join(ES_DIR, 'index.js'),
formats: ['es', 'cjs', 'umd'],
fileName: (format: string) => {
const suffix = format === 'umd' ? '' : `.${format}`;
return minify ? `${name}${suffix}.min.js` : `${name}${suffix}.js`;