Merge branch 'dev' into next

This commit is contained in:
chenjiahan 2022-06-26 21:43:49 +08:00
commit 20ee462cab
6 changed files with 154 additions and 36 deletions

View File

@ -103,7 +103,7 @@ module.exports = {
- Type: `string` - Type: `string`
- Default: `'less'` - Default: `'less'`
CSS preprocess Config, support `less` and `sass`. Use `less` by default. CSS preprocessor config, support `less` and `sass`. Use `less` by default.
```js ```js
module.exports = { module.exports = {
@ -115,6 +115,23 @@ module.exports = {
}; };
``` ```
### build.css.removeSourceFile
- Type: `boolean`
- Default: `'false'`
Whether to remove the source style files after build.
```js
module.exports = {
build: {
css: {
removeSourceFile: true,
},
},
};
```
### build.site.publicPath ### build.site.publicPath
- Type: `string` - Type: `string`
@ -204,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`

View File

@ -115,6 +115,23 @@ module.exports = {
}; };
``` ```
### build.css.removeSourceFile
- Type: `boolean`
- Default: `'false'`
是否在构建后移除样式文件的源代码。
```js
module.exports = {
build: {
css: {
removeSourceFile: true,
},
},
};
```
### build.site.publicPath ### build.site.publicPath
- Type: `string` - Type: `string`
@ -206,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`

View File

@ -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)))
)
); );
} }

View File

@ -1,11 +1,13 @@
import { parse } from 'path'; import { parse } from 'path';
import { readFileSync, writeFileSync } from 'fs'; import fse from 'fs-extra';
import { replaceExt } from '../common/index.js'; import { getVantConfig, replaceExt } from '../common/index.js';
import { compileCss } from './compile-css.js'; import { compileCss } from './compile-css.js';
import { compileLess } from './compile-less.js'; import { compileLess } from './compile-less.js';
import { compileSass } from './compile-sass.js'; import { compileSass } from './compile-sass.js';
import { consola } from '../common/logger.js'; import { consola } from '../common/logger.js';
const { readFileSync, writeFileSync, removeSync } = fse;
async function compileFile(filePath: string) { async function compileFile(filePath: string) {
const parsedPath = parse(filePath); const parsedPath = parse(filePath);
@ -30,6 +32,11 @@ async function compileFile(filePath: string) {
export async function compileStyle(filePath: string) { export async function compileStyle(filePath: string) {
const css = await compileFile(filePath); const css = await compileFile(filePath);
const vantConfig = getVantConfig();
if (vantConfig.build?.css?.removeSourceFile) {
removeSync(filePath);
}
writeFileSync(replaceExt(filePath, '.css'), css); writeFileSync(replaceExt(filePath, '.css'), css);
} }

View File

@ -12,6 +12,7 @@ import {
ES_DIR, ES_DIR,
SRC_DIR, SRC_DIR,
LIB_DIR, LIB_DIR,
getVantConfig,
STYLE_DEPS_JSON_FILE, STYLE_DEPS_JSON_FILE,
} from '../common/constant.js'; } from '../common/constant.js';
@ -87,8 +88,10 @@ export function genComponentStyle(
delete require.cache[STYLE_DEPS_JSON_FILE]; delete require.cache[STYLE_DEPS_JSON_FILE];
} }
const vantConfig = getVantConfig();
const components = getComponents(); const components = getComponents();
const baseFile = getCssBaseFile(); const baseFile = getCssBaseFile();
const hasSourceFile = vantConfig.build?.css?.removeSourceFile !== true;
components.forEach((component) => { components.forEach((component) => {
genEntry({ genEntry({
@ -98,7 +101,7 @@ export function genComponentStyle(
ext: '.css', ext: '.css',
}); });
if (CSS_LANG !== 'css') { if (CSS_LANG !== 'css' && hasSourceFile) {
genEntry({ genEntry({
baseFile, baseFile,
component, component,

View File

@ -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',