mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
const path = require('path');
|
|
const chokidar = require('chokidar');
|
|
const webpack = require('webpack');
|
|
const createDevServer = require('../helpers/createDevServer');
|
|
const getPort = require('../helpers/getPort');
|
|
const log = require('../helpers/log');
|
|
const createDevConfig = require('../configs/webpack.config');
|
|
|
|
const generateRoute = require('./route');
|
|
|
|
function routeHandle(config) {
|
|
generateRoute(config);
|
|
// 监听pages变化重新生成路由
|
|
const pagesWatcher = chokidar.watch(path.resolve(config.folders.PROJECT_DIR, './src/pages'));
|
|
pagesWatcher.on('ready', () => {
|
|
pagesWatcher.on('add', (filePath) => {
|
|
if (path.extname(filePath) === '.fes' || path.extname(filePath) === '.vue') {
|
|
generateRoute(config);
|
|
}
|
|
}).on('unlink', (filePath) => {
|
|
if (path.extname(filePath) === '.fes' || path.extname(filePath) === '.vue') {
|
|
generateRoute(config);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
function startDev(config) {
|
|
routeHandle(config);
|
|
const webpackConfig = createDevConfig(config, webpack, 'dev');
|
|
if (!webpackConfig) return;
|
|
|
|
getPort(config.port)
|
|
.then((port) => {
|
|
log.message(`------------ find port success. port: ${port}`);
|
|
createDevServer(port, webpackConfig);
|
|
}).catch((err) => {
|
|
log.message('------------ build error.');
|
|
log.error(err);
|
|
});
|
|
}
|
|
|
|
module.exports = startDev;
|