mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
101 lines
2.9 KiB
JavaScript
101 lines
2.9 KiB
JavaScript
import { Logger } from '@fesjs/compiler';
|
|
|
|
const logger = new Logger('fes:builder-webpack');
|
|
|
|
export default (api) => {
|
|
const {
|
|
paths,
|
|
utils: { chalk, getPort, getHostName, changePort },
|
|
} = api;
|
|
|
|
let port;
|
|
let hostname;
|
|
let server;
|
|
|
|
async function destroy() {
|
|
await server?.stop();
|
|
}
|
|
|
|
api.registerCommand({
|
|
command: 'dev',
|
|
description: 'start a local http service for development',
|
|
options: [
|
|
{
|
|
name: '--port',
|
|
description: 'http service port, like 8080',
|
|
},
|
|
{
|
|
name: '--https',
|
|
description: 'whether to turn on the https service',
|
|
},
|
|
],
|
|
async fn({ args = {} }) {
|
|
const { cleanTmpPathExceptCache, getBundleAndConfigs } = require('../buildDevUtils');
|
|
const connectHistoryMiddleware = require('./connectHistoryMiddleware').default;
|
|
|
|
port = await getPort(process.env.PORT || args.port || api.config.devServer?.port);
|
|
|
|
changePort(port);
|
|
|
|
hostname = getHostName(api.config.devServer?.host);
|
|
|
|
// enable https
|
|
const isHTTPS = process.env.HTTPS || args.https || api.config.devServer?.https;
|
|
|
|
cleanTmpPathExceptCache({
|
|
absTmpPath: paths.absTmpPath,
|
|
});
|
|
|
|
await api.applyPlugins({
|
|
key: 'onGenerateFiles',
|
|
type: api.ApplyPluginsType.event,
|
|
});
|
|
|
|
await api.startWatch();
|
|
|
|
// dev
|
|
const { bundleConfig } = await getBundleAndConfigs({ api });
|
|
|
|
const beforeMiddlewares = await api.applyPlugins({
|
|
key: 'addBeforeMiddlewares',
|
|
type: api.ApplyPluginsType.add,
|
|
initialValue: [],
|
|
args: {},
|
|
});
|
|
const middlewares = await api.applyPlugins({
|
|
key: 'addMiddlewares',
|
|
type: api.ApplyPluginsType.add,
|
|
initialValue: [],
|
|
args: {},
|
|
});
|
|
|
|
const { startDevServer } = require('./devServer');
|
|
server = startDevServer({
|
|
webpackConfig: bundleConfig,
|
|
host: hostname,
|
|
port,
|
|
proxy: api.config.proxy,
|
|
https: isHTTPS,
|
|
beforeMiddlewares: [connectHistoryMiddleware(api), ...beforeMiddlewares],
|
|
afterMiddlewares: [...middlewares],
|
|
customerDevServerConfig: api.config.devServer,
|
|
});
|
|
|
|
return {
|
|
destroy,
|
|
};
|
|
},
|
|
});
|
|
|
|
api.registerMethod({
|
|
name: 'restartServer',
|
|
fn() {
|
|
logger.info(chalk.gray('Try to restart dev server...'));
|
|
destroy();
|
|
process.send({
|
|
type: 'RESTART',
|
|
});
|
|
},
|
|
});
|
|
};
|