global: 同步3.0.1

This commit is contained in:
hongqiongxing 2023-04-17 14:47:18 +08:00
parent fc8e862ffd
commit e1e8cf0b11
4 changed files with 259 additions and 1 deletions

View File

@ -87,7 +87,9 @@ async function build (target) {
replace: { ...replace, __DEV__: dev },
banner,
cssPreprocessorOptions: config.cssPreprocessorOptions,
plugins: config.plugins
plugins: config.plugins,
externals: config.externals,
visualizer: config.visualizer
})
cfg.build.minify = 'terser'
cfg.build.terserOptions = { module: f.format === 'es', output: { comments: false } }

View File

@ -126,6 +126,9 @@ function createContext () {
runPostPublish (name, pkg) {
if (config.onPostPublish) return config.onPostPublish(pkg, name)
},
/**
* @returns {import('.').Config}
*/
getConfig (pkg) {
if (!pkg) return config
return Object.assign({}, config, pkg.libd)

247
scripts/index.d.ts vendored Normal file
View File

@ -0,0 +1,247 @@
/* eslint-disable @typescript-eslint/ban-types */
import type { UserConfig } from 'vite'
import type { PluginVisualizerOptions } from 'rollup-plugin-visualizer'
import { PluginItem } from "@babel/core";
export declare interface Config {
/**
* vite css.preprocessorOptions
* @see https://cn.vitejs.dev/config/#css-preprocessoroptions
*/
cssPreprocessorOptions?: Record<string, object>;
/**
* ES false
*/
es?: {
/**
* es es
* @default true
*/
enabled: boolean;
/**
* less sass
* @default true
*/
keepCss: boolean;
/**
* dev __DEV__ process.env.NODE_ENV !== 'production'
* false dev
* @default true
*/
keepDev: boolean;
} | false;
/**
* typescript es
* @default true
*/
declaration?: boolean;
/**
* dist
* 'index.d.ts'
* @default false
*/
bundleDts?: boolean | string;
/**
* umd `window.{umdName}` 访 SDK
*/
umdName?: string;
/**
* umd peerDependencies
* pkg1 peerDependencies umdName Pkg1
* { pkg1: 'Pkg1' }
* monorepo packages libd umdName
*/
umdGlobals?: Record<string, string>;
/**
* sourcemap
* @default true
*/
devSourceMap?: boolean;
/**
* sourcemap
* @default true
*/
prodSourceMap?: boolean;
/**
* babel polyfill
* polyfill core-js
* polyfill 使 package.json browserslist
*/
legacy?: {
/**
*
* @default true
*/
enabled?: boolean;
/**
* polyfill
* core-js
* @default false
*/
polyfills?: boolean;
/**
* es 使 babel
* @default false
*/
esEnabled?: boolean;
/**
* es polyfill
* @default false
*/
esPolyfills?: boolean;
/**
* babel
*/
exclude?: string | RegExp | (string | RegExp)[];
/**
* babel
*/
include?: string | RegExp | (string | RegExp)[];
/**
* 使transformRuntime转义代码true
*/
transformRuntime?: boolean;
/**
* babel使用的插件列表
*/
plugins?: PluginItem[] | null | undefined;
},
/**
* dist
* umd false
*/
buildFormats?: (({
/**
*
*/
format?: 'es' | 'cjs' | 'umd' | 'iife';
/**
* umdName
*/
name?: string;
/**
* index2.js
*/
input?: string;
/**
*
* @default 'index.${format}.min.js'
*/
output?: string;
/**
* css
* @default 'index.${format}.min.css'
*/
outputCss?: string;
/**
* true
* @default true
*/
browser?: boolean;
/**
* legacy.enabled
*/
legacy?: boolean;
/**
* polyfill legacy.polyfills
*/
polyfills?: boolean;
/**
* dev
* true __DEV__
* 'index.${format}.dev.min.js'
* `index.${format}.prod.min.js`
* @default false
*/
keepDev?: boolean;
} | string)[]) | false;
/**
* dev
* @see https://cn.vitejs.dev/config/#server-host
*/
server: UserConfig['server'],
/**
* vite
* @see https://cn.vitejs.dev/config/#plugins
*/
plugins: UserConfig['plugins'];
/**
* worker构建时使用的配置
* @see https://cn.vitejs.dev/config/worker-options
*/
worker?: UserConfig['worker'];
/**
* SDK node_modules
* 使
* ['../pkg1'] pkg1 libd
*/
projects?: string[];
/**
* vite define
* package.json
*/
replace?: Record<string, string> | ((pkg?: Record<string, any>) => Record<string, string>);
/**
* SDK banner package.json
*/
banner?: string | ((pkg: Record<string, any>, name?: string) => string);
/**
* svg svg dom base64
* import icon from './icon.svg'
* const svgDom = icon()
* @default false
*/
svgDom?: boolean;
/**
*
* ```js
* {
* externals: {
* react: 'React'
* }
* }
*
* ```
*/
externals?: Record<string, string>;
/**
* UMD bundle后的代码分析结果 (rollup-plugin-visualizer)
* @see https://www.npmjs.com/package/rollup-plugin-visualizer#Options
* @default false
*/
visualizer?: boolean | PluginVisualizerOptions;
/**
* Demo vite
*/
onPreBuildDemo?: (cfg: UserConfig, pkg: Record<string, object> | undefined, dir: string) => UserConfig | undefined;
/**
* vite
*/
onPreBuild?: (cfg: UserConfig, pkg: Record<string, object>, name: string) => UserConfig | undefined;
/**
*
*/
onPostBuild?: (pkg: Record<string, object>, name: string) => void;
/**
* dev vite
*/
onPreDev?: (cfg: UserConfig) => UserConfig | undefined;
/**
* dev
*/
onPostDev?: () => void;
/**
* dev
*/
onDevProgress?: () => void;
/**
* npm
*/
onPrePublish?: (pkg: Record<string, object>, name: string) => void;
/**
* npm
*/
onPostPublish?: (pkg: Record<string, object>, name: string) => void;
}
export declare function defineConfig(config: Config): Config;

View File

@ -1,6 +1,8 @@
const path = require('path')
const fs = require('fs-extra')
const react = require('@vitejs/plugin-react')
const { viteExternalsPlugin } = require('vite-plugin-externals')
const { visualizer: visualizerPlugin } = require('rollup-plugin-visualizer')
const { resolveConfig } = require('vite')
const legacy = require('./legacy')
const ctx = require('../context')
@ -170,6 +172,8 @@ async function getBuildConfig (isDev, cfg = {}, isEs) {
}
}
: undefined,
// Vite Externals
cfg.externals ? viteExternalsPlugin(cfg.externals) : undefined,
(isDev || !cfg.legacy) ? undefined : legacy({ needPolyfills: cfg.needPolyfills, exclude: cfg.babelExclude }),
isDev
? undefined
@ -193,6 +197,8 @@ async function getBuildConfig (isDev, cfg = {}, isEs) {
}
}
},
// Rollup Visualizer Plugin
cfg.visualizer && !isDev && !isEs ? visualizerPlugin(typeof cfg.visualizer === 'object' ? cfg.visualizer : undefined) : undefined,
...cfg.plugins
].filter(Boolean),
worker: {