mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
feat(cli): add build.bundleOptions config (#10751)
This commit is contained in:
parent
bb23e1b700
commit
293dab6a51
@ -221,6 +221,45 @@ module.exports = {
|
|||||||
|
|
||||||
`npm` package manager.
|
`npm` package manager.
|
||||||
|
|
||||||
|
### build.bundleOptions
|
||||||
|
|
||||||
|
- Type: `BundleOptions[]`
|
||||||
|
|
||||||
|
Specify the format of the bundled output.
|
||||||
|
|
||||||
|
The type of `BundleOptions`:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
type BundleOption = {
|
||||||
|
// Whether to minify code (Tips: es format output can't be minified by vite)
|
||||||
|
minify?: boolean;
|
||||||
|
// Formats, can be set to 'es' | 'cjs' | 'umd' | 'iife'
|
||||||
|
formats: LibraryFormats[];
|
||||||
|
// Dependencies to external (Vue is externaled by default)
|
||||||
|
external?: string[];
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
Default value:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
const DEFAULT_OPTIONS: BundleOption[] = [
|
||||||
|
{
|
||||||
|
minify: false,
|
||||||
|
formats: ['umd'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minify: true,
|
||||||
|
formats: ['umd'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minify: false,
|
||||||
|
formats: ['es', 'cjs'],
|
||||||
|
external: allDependencies,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
```
|
||||||
|
|
||||||
### site.title
|
### site.title
|
||||||
|
|
||||||
- Type: `string`
|
- Type: `string`
|
||||||
|
@ -223,6 +223,45 @@ module.exports = {
|
|||||||
|
|
||||||
指定使用的包管理器。
|
指定使用的包管理器。
|
||||||
|
|
||||||
|
### build.bundleOptions
|
||||||
|
|
||||||
|
- Type: `BundleOptions[]`
|
||||||
|
|
||||||
|
指定打包后产物的格式。
|
||||||
|
|
||||||
|
产物格式由三个配置项控制:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
type BundleOption = {
|
||||||
|
// 是否压缩代码(注意 es 产物无法被 vite 压缩)
|
||||||
|
minify?: boolean;
|
||||||
|
// 产物类型,可选值为 'es' | 'cjs' | 'umd' | 'iife'
|
||||||
|
formats: LibraryFormats[];
|
||||||
|
// 需要 external 的依赖(Vue 默认会被 external)
|
||||||
|
external?: string[];
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
该选项的默认值为:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
const DEFAULT_OPTIONS: BundleOption[] = [
|
||||||
|
{
|
||||||
|
minify: false,
|
||||||
|
formats: ['umd'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minify: true,
|
||||||
|
formats: ['umd'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minify: false,
|
||||||
|
formats: ['es', 'cjs'],
|
||||||
|
external: allDependencies,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
```
|
||||||
|
|
||||||
### site.title
|
### site.title
|
||||||
|
|
||||||
- Type: `string`
|
- Type: `string`
|
||||||
|
@ -1,42 +1,41 @@
|
|||||||
import { build } from 'vite';
|
import { build } from 'vite';
|
||||||
import { getPackageJson } from '../common/constant.js';
|
import { getPackageJson, getVantConfig } from '../common/constant.js';
|
||||||
import { mergeCustomViteConfig } from '../common/index.js';
|
import { mergeCustomViteConfig } from '../common/index.js';
|
||||||
import { getViteConfigForPackage } from '../config/vite.package.js';
|
import { getViteConfigForPackage } from '../config/vite.package.js';
|
||||||
|
import type { LibraryFormats } from 'vite';
|
||||||
|
|
||||||
|
export type BundleOption = {
|
||||||
|
minify?: boolean;
|
||||||
|
formats: LibraryFormats[];
|
||||||
|
external?: string[];
|
||||||
|
};
|
||||||
|
|
||||||
export async function compileBundles() {
|
export async function compileBundles() {
|
||||||
const dependencies = getPackageJson().dependencies || {};
|
const dependencies = getPackageJson().dependencies || {};
|
||||||
const externals = Object.keys(dependencies);
|
const external = Object.keys(dependencies);
|
||||||
|
|
||||||
const configs = [
|
const DEFAULT_OPTIONS: BundleOption[] = [
|
||||||
// umd bundle
|
{
|
||||||
getViteConfigForPackage({
|
|
||||||
minify: false,
|
minify: false,
|
||||||
formats: ['umd'],
|
formats: ['umd'],
|
||||||
external: ['vue'],
|
},
|
||||||
}),
|
{
|
||||||
// umd bundle (minified)
|
|
||||||
getViteConfigForPackage({
|
|
||||||
minify: true,
|
minify: true,
|
||||||
formats: ['umd'],
|
formats: ['umd'],
|
||||||
external: ['vue'],
|
},
|
||||||
}),
|
{
|
||||||
// esm/cjs bundle
|
|
||||||
getViteConfigForPackage({
|
|
||||||
minify: false,
|
minify: false,
|
||||||
formats: ['es', 'cjs'],
|
formats: ['es', 'cjs'],
|
||||||
external: ['vue', ...externals],
|
external,
|
||||||
}),
|
},
|
||||||
// esm/cjs bundle (minified)
|
|
||||||
// vite will not minify es bundle
|
|
||||||
// see: https://github.com/vuejs/vue-next/issues/2860
|
|
||||||
getViteConfigForPackage({
|
|
||||||
minify: true,
|
|
||||||
formats: ['es', 'cjs'],
|
|
||||||
external: ['vue', ...externals],
|
|
||||||
}),
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const bundleOptions: BundleOption[] =
|
||||||
|
getVantConfig().build?.bundleOptions || DEFAULT_OPTIONS;
|
||||||
|
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
configs.map((config) => build(mergeCustomViteConfig(config)))
|
bundleOptions.map((config) =>
|
||||||
|
build(mergeCustomViteConfig(getViteConfigForPackage(config)))
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,14 @@
|
|||||||
import { join } from 'path';
|
import { join } from 'path';
|
||||||
import { setBuildTarget } from '../common/index.js';
|
import { setBuildTarget } from '../common/index.js';
|
||||||
import { CWD, ES_DIR, getVantConfig, LIB_DIR } from '../common/constant.js';
|
import { CWD, ES_DIR, getVantConfig, LIB_DIR } from '../common/constant.js';
|
||||||
import type { InlineConfig, LibraryFormats } from 'vite';
|
import type { InlineConfig } from 'vite';
|
||||||
|
import type { BundleOption } from '../compiler/compile-bundles.js';
|
||||||
|
|
||||||
export function getViteConfigForPackage({
|
export function getViteConfigForPackage({
|
||||||
minify,
|
minify,
|
||||||
formats,
|
formats,
|
||||||
external,
|
external = [],
|
||||||
}: {
|
}: BundleOption): InlineConfig {
|
||||||
minify: boolean;
|
|
||||||
formats: LibraryFormats[];
|
|
||||||
external: string[];
|
|
||||||
}): InlineConfig {
|
|
||||||
setBuildTarget('package');
|
setBuildTarget('package');
|
||||||
|
|
||||||
const { name, build } = getVantConfig();
|
const { name, build } = getVantConfig();
|
||||||
@ -36,7 +33,7 @@ export function getViteConfigForPackage({
|
|||||||
// terser has better compression than esbuild
|
// terser has better compression than esbuild
|
||||||
minify: minify ? 'terser' : false,
|
minify: minify ? 'terser' : false,
|
||||||
rollupOptions: {
|
rollupOptions: {
|
||||||
external,
|
external: [...external, 'vue'],
|
||||||
output: {
|
output: {
|
||||||
dir: LIB_DIR,
|
dir: LIB_DIR,
|
||||||
exports: 'named',
|
exports: 'named',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user