fix: 优化构建

This commit is contained in:
winixt 2022-08-26 15:22:48 +08:00
parent 49d64b5179
commit d0691ca90a
3 changed files with 25 additions and 7 deletions

View File

@ -32,7 +32,7 @@ function transformBrowserCode(code) {
{
modules: false,
useBuiltIns: false,
targets: { chrome: '51' },
targets: { chrome: '64' },
},
],
],

View File

@ -1,6 +1,17 @@
import { splitVendorChunkPlugin } from 'vite';
import legacy from '@vitejs/plugin-legacy';
import { getInnerCommonConfig } from '../../common/getConfig';
function getEsbuildTarget(targets) {
const result = [];
['chrome', 'edge', 'firefox', 'hermes', 'ios', 'node', 'opera', 'rhino', 'safari'].forEach((key) => {
if (targets[key]) {
result.push(`${key}${targets[key]}`);
}
});
return result;
}
export default async (api) => {
const { deepmerge, getTargetsAndBrowsersList } = api.utils;
@ -24,14 +35,15 @@ export default async (api) => {
plugins: [
legacy({
modernPolyfills: true,
renderLegacyChunks: false,
targets,
}),
splitVendorChunkPlugin(),
],
build: {
...build,
minify: 'terser',
terserOptions: build.terserOptions || api.config.terserOptions,
target: build.target || 'es2015',
target: build.target || getEsbuildTarget(targets),
outDir: build.outDir || api.config.outputPath || 'dist',
assetsInlineLimit: build.assetsInlineLimit || api.config.inlineLimit || 8192,
},

View File

@ -3,10 +3,16 @@ export default (api) => {
key: 'targets',
config: {
default: {
chrome: 56,
firefox: 67,
safari: 10,
edge: 13,
android: '61.0.0',
chrome: '61.0.0',
edge: '16.0.0',
firefox: '60.0.0',
ios: '10.3.0',
node: '13.2.0',
opera: '48.0.0',
safari: '10.1.0',
samsung: '8.2.0',
browsers: ['defaults and not chrome < 61'],
},
schema(joi) {
return joi.object();