mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(@vant/cli): should replace NODE_ENV in vite v3 (#10887)
This commit is contained in:
parent
6fee5cfed8
commit
89718934af
@ -14,12 +14,19 @@ export function getViteConfigForPackage({
|
|||||||
const { name, build } = getVantConfig();
|
const { name, build } = getVantConfig();
|
||||||
const entryExtension = build?.extensions?.esm || '.js';
|
const entryExtension = build?.extensions?.esm || '.js';
|
||||||
const entry = join(ES_DIR, `index${entryExtension}`);
|
const entry = join(ES_DIR, `index${entryExtension}`);
|
||||||
|
const shouldReplaceEnv = minify || formats?.includes('umd');
|
||||||
|
|
||||||
return {
|
return {
|
||||||
root: CWD,
|
root: CWD,
|
||||||
|
|
||||||
logLevel: 'silent',
|
logLevel: 'silent',
|
||||||
|
|
||||||
|
define: shouldReplaceEnv
|
||||||
|
? {
|
||||||
|
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
|
||||||
build: {
|
build: {
|
||||||
lib: {
|
lib: {
|
||||||
name,
|
name,
|
||||||
@ -30,6 +37,7 @@ export function getViteConfigForPackage({
|
|||||||
return minify ? `${name}${suffix}.min.js` : `${name}${suffix}.js`;
|
return minify ? `${name}${suffix}.min.js` : `${name}${suffix}.js`;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// terser has better compression than esbuild
|
// terser has better compression than esbuild
|
||||||
minify: minify ? 'terser' : false,
|
minify: minify ? 'terser' : false,
|
||||||
rollupOptions: {
|
rollupOptions: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user