fix: 优化 webpack 构建时的信息输出

This commit is contained in:
winixt 2022-04-10 17:43:49 +08:00
parent b5d28c5989
commit 53a8deb4f8
9 changed files with 28 additions and 60 deletions

View File

@ -1,5 +1,4 @@
module.exports = { module.exports = {
// 需要编译的包
pkgs: [ pkgs: [
'create-fes-app', 'create-fes-app',
'fes', 'fes',

View File

@ -8,8 +8,8 @@
"packages/*" "packages/*"
], ],
"scripts": { "scripts": {
"dev": "node scripts/build.js --watch", "dev": "node scripts/build.mjs --watch",
"build": "node scripts/build.js", "build": "node scripts/build.mjs",
"release": "node scripts/release.mjs", "release": "node scripts/release.mjs",
"docs:dev": "vuepress dev docs --clean-cache", "docs:dev": "vuepress dev docs --clean-cache",
"docs:build": "vuepress build docs --clean-cache", "docs:build": "vuepress build docs --clean-cache",

View File

@ -3,7 +3,7 @@ import { transformSync } from '@babel/core';
const DEFAULT_FILTER = /\.[jt]sx?$/; const DEFAULT_FILTER = /\.[jt]sx?$/;
export default (config) => ({ export default (config) => ({
name: 'vite-pligin:babel-polyfill', name: 'vite-plugin:babel-polyfill',
transform(code, id) { transform(code, id) {
const [filepath] = id.split('?'); const [filepath] = id.split('?');
if (DEFAULT_FILTER.test(id) || DEFAULT_FILTER.test(filepath)) { if (DEFAULT_FILTER.test(id) || DEFAULT_FILTER.test(filepath)) {

View File

@ -35,7 +35,6 @@
"@babel/preset-typescript": "^7.15.0", "@babel/preset-typescript": "^7.15.0",
"@fesjs/compiler": "^2.0.5", "@fesjs/compiler": "^2.0.5",
"@fesjs/utils": "^2.0.4", "@fesjs/utils": "^2.0.4",
"@soda/friendly-errors-webpack-plugin": "^1.8.0",
"@vue/babel-plugin-jsx": "^1.0.2", "@vue/babel-plugin-jsx": "^1.0.2",
"autoprefixer": "^10.2.4", "autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2", "babel-loader": "^8.2.2",

View File

@ -281,8 +281,6 @@ export default async function getConfig({ api, cwd, config, env, entry = {}, mod
// --------------- 构建输出 ---------- // --------------- 构建输出 ----------
webpackConfig.plugin('progress').use(require.resolve('webpackbar')); webpackConfig.plugin('progress').use(require.resolve('webpackbar'));
webpackConfig.plugin('friendly-errors').use(require('@soda/friendly-errors-webpack-plugin'));
// --------------- chainwebpack ----------- // --------------- chainwebpack -----------
if (chainWebpack) { if (chainWebpack) {
await chainWebpack(webpackConfig, { await chainWebpack(webpackConfig, {

View File

@ -1,16 +1,20 @@
/* eslint-disable import/extensions */
// 关闭 import 规则 // 关闭 import 规则
/* eslint import/no-extraneous-dependencies: 0 */ /* eslint import/no-extraneous-dependencies: 0 */
const fs = require('fs'); import path from 'path';
const fse = require('fs-extra'); import fs from 'fs';
const path = require('path'); import fse from 'fs-extra';
const merge = require('deepmerge'); import chalk from 'chalk';
const chokidar = require('chokidar'); import merge from 'deepmerge';
const chalk = require('chalk'); import chokidar from 'chokidar';
const argv = require('yargs-parser')(process.argv.slice(2)); import yargsParser from 'yargs-parser';
import compiler from './compiler.mjs';
import randomColor from './randomColor.mjs';
const compiler = require('./compiler'); import buildConfig from '../build.config.js';
const randomColor = require('./randomColor');
const argv = yargsParser(process.argv.slice(2));
const ESM_OUTPUT_DIR = 'es'; const ESM_OUTPUT_DIR = 'es';
const NODE_CJS_OUTPUT_DIR = 'lib'; const NODE_CJS_OUTPUT_DIR = 'lib';
@ -54,16 +58,16 @@ function getOutputPath(config, pkgName) {
function getGlobalConfig() { function getGlobalConfig() {
if (fs.existsSync(GLOBAL_CONFIG_PATH)) { if (fs.existsSync(GLOBAL_CONFIG_PATH)) {
const userConfig = require(GLOBAL_CONFIG_PATH); return merge(DEFAULT_CONFIG, buildConfig);
return merge(DEFAULT_CONFIG, userConfig);
} }
return DEFAULT_CONFIG; return DEFAULT_CONFIG;
} }
function getPkgConfig(config, pkgName) { async function getPkgConfig(config, pkgName) {
const pkgConfigPath = path.join(getPkgPath(pkgName), CONFIG_FILE_NAME); const pkgConfigPath = path.join(getPkgPath(pkgName), CONFIG_FILE_NAME);
if (fs.existsSync(pkgConfigPath)) { if (fs.existsSync(pkgConfigPath)) {
return merge(config, require(pkgConfigPath)); const content = await import(pkgConfigPath);
return merge(config, content.default);
} }
return config; return config;
@ -150,11 +154,11 @@ function watchFile(dir, outputDir, config, log) {
} }
function compilerPkgs(pkgs, globalConfig) { function compilerPkgs(pkgs, globalConfig) {
pkgs.forEach((pkgName) => { pkgs.forEach(async (pkgName) => {
const sourceCodeDir = getPkgSourcePath(pkgName); const sourceCodeDir = getPkgSourcePath(pkgName);
if (fs.existsSync(sourceCodeDir)) { if (fs.existsSync(sourceCodeDir)) {
const log = genLog(pkgName); const log = genLog(pkgName);
const config = getPkgConfig(globalConfig, pkgName); const config = await getPkgConfig(globalConfig, pkgName);
const outputDir = getOutputPath(config, pkgName); const outputDir = getOutputPath(config, pkgName);
cleanBeforeCompilerResult(pkgName, log); cleanBeforeCompilerResult(pkgName, log);

View File

@ -1,10 +1,10 @@
// 关闭 import 规则 // 关闭 import 规则
/* eslint import/no-extraneous-dependencies: 0 */ /* eslint import/no-extraneous-dependencies: 0 */
const babel = require('@babel/core'); import { transformSync } from '@babel/core';
function transform(code, options) { function transform(code, options) {
const result = babel.transformSync(code, options); const result = transformSync(code, options);
return result.code; return result.code;
} }
@ -39,7 +39,7 @@ function transformBrowserCode(code) {
}); });
} }
function compiler(code, config) { export default function compiler(code, config) {
if (!config.target || config.target === 'node') { if (!config.target || config.target === 'node') {
return transformNodeCode(code); return transformNodeCode(code);
} }
@ -48,5 +48,3 @@ function compiler(code, config) {
} }
throw new Error(`config target error: ${config.target}, only can use 'node' and 'browser'`); throw new Error(`config target error: ${config.target}, only can use 'node' and 'browser'`);
} }
module.exports = compiler;

View File

@ -1,5 +1,5 @@
/* eslint import/no-extraneous-dependencies: 0 */ /* eslint import/no-extraneous-dependencies: 0 */
const chalk = require('chalk'); import chalk from 'chalk';
const colors = [ const colors = [
'red', 'red',
@ -20,7 +20,7 @@ const colors = [
let index = 0; let index = 0;
const cache = {}; const cache = {};
module.exports = function (pkg) { export default function (pkg) {
if (!cache[pkg]) { if (!cache[pkg]) {
const color = colors[index]; const color = colors[index];
const str = chalk[color].bold(pkg); const str = chalk[color].bold(pkg);
@ -32,4 +32,4 @@ module.exports = function (pkg) {
} }
} }
return cache[pkg]; return cache[pkg];
}; }

View File

@ -1898,16 +1898,6 @@
dependencies: dependencies:
"@sinonjs/commons" "^1.7.0" "@sinonjs/commons" "^1.7.0"
"@soda/friendly-errors-webpack-plugin@^1.8.0":
version "1.8.1"
resolved "https://registry.npmmirror.com/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.8.1.tgz#4d4fbb1108993aaa362116247c3d18188a2c6c85"
integrity sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==
dependencies:
chalk "^3.0.0"
error-stack-parser "^2.0.6"
string-width "^4.2.3"
strip-ansi "^6.0.1"
"@surma/rollup-plugin-off-main-thread@^2.2.3": "@surma/rollup-plugin-off-main-thread@^2.2.3":
version "2.2.3" version "2.2.3"
resolved "https://registry.npmmirror.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz#ee34985952ca21558ab0d952f00298ad2190c053" resolved "https://registry.npmmirror.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz#ee34985952ca21558ab0d952f00298ad2190c053"
@ -3671,14 +3661,6 @@ chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
escape-string-regexp "^1.0.5" escape-string-regexp "^1.0.5"
supports-color "^5.3.0" supports-color "^5.3.0"
chalk@^3.0.0:
version "3.0.0"
resolved "https://registry.npmmirror.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
dependencies:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2:
version "4.1.2" version "4.1.2"
resolved "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" resolved "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
@ -4998,13 +4980,6 @@ error-ex@^1.3.1:
dependencies: dependencies:
is-arrayish "^0.2.1" is-arrayish "^0.2.1"
error-stack-parser@^2.0.6:
version "2.0.7"
resolved "https://registry.npmmirror.com/error-stack-parser/-/error-stack-parser-2.0.7.tgz#b0c6e2ce27d0495cf78ad98715e0cad1219abb57"
integrity sha512-chLOW0ZGRf4s8raLrDxa5sdkvPec5YdvwbFnqJme4rk0rFajP8mPtrDL1+I+CwrQDCjswDA5sREX7jYQDQs9vA==
dependencies:
stackframe "^1.1.1"
es-abstract@^1.19.0, es-abstract@^1.19.1: es-abstract@^1.19.0, es-abstract@^1.19.1:
version "1.19.2" version "1.19.2"
resolved "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.19.2.tgz#8f7b696d8f15b167ae3640b4060670f3d054143f" resolved "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.19.2.tgz#8f7b696d8f15b167ae3640b4060670f3d054143f"
@ -10667,11 +10642,6 @@ stack-utils@^2.0.3:
dependencies: dependencies:
escape-string-regexp "^2.0.0" escape-string-regexp "^2.0.0"
stackframe@^1.1.1:
version "1.2.1"
resolved "https://registry.npmmirror.com/stackframe/-/stackframe-1.2.1.tgz#1033a3473ee67f08e2f2fc8eba6aef4f845124e1"
integrity sha512-h88QkzREN/hy8eRdyNhhsO7RSJ5oyTqxxmmn0dzBIMUclZsjpfmrsg81vp8mjjAs2vAZ72nyWxRUwSwmh0e4xg==
static-extend@^0.1.1: static-extend@^0.1.1:
version "0.1.2" version "0.1.2"
resolved "https://registry.npmmirror.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" resolved "https://registry.npmmirror.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"