mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
feat: 优化command
1. 能结束 2. 提升fes命令的效率
This commit is contained in:
parent
1768346bcd
commit
00957880a0
@ -115,9 +115,8 @@ export default class Service extends EventEmitter {
|
|||||||
env: this.env
|
env: this.env
|
||||||
});
|
});
|
||||||
|
|
||||||
this.program = new Command();
|
this.program = this.initCommand();
|
||||||
|
|
||||||
this.initCommand();
|
|
||||||
|
|
||||||
// setup initial plugins
|
// setup initial plugins
|
||||||
const baseOpts = {
|
const baseOpts = {
|
||||||
@ -492,24 +491,12 @@ export default class Service extends EventEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
initCommand() {
|
initCommand() {
|
||||||
this.program
|
const command = new Command();
|
||||||
|
command
|
||||||
.usage('<command> [options]')
|
.usage('<command> [options]')
|
||||||
.version(`@webank/fes ${this.fesPkg.version}`, '-v, --vers', 'output the current version')
|
.version(`@webank/fes ${this.fesPkg.version}`, '-v, --vers', 'output the current version')
|
||||||
.description(chalk.cyan('一个好用的前端应用解决方案'));
|
.description(chalk.cyan('一个好用的前端应用解决方案'));
|
||||||
}
|
return command;
|
||||||
|
|
||||||
parseCommand() {
|
|
||||||
this.program.on('--help', () => {
|
|
||||||
console.log();
|
|
||||||
console.log(
|
|
||||||
` Run ${chalk.cyan(
|
|
||||||
'fes <command> --help'
|
|
||||||
)} for detailed usage of given command.`
|
|
||||||
);
|
|
||||||
console.log();
|
|
||||||
});
|
|
||||||
this.program.commands.forEach(c => c.on('--help', () => console.log()));
|
|
||||||
this.program.parse(process.argv);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async run({ rawArgv = {}, args = {} }) {
|
async run({ rawArgv = {}, args = {} }) {
|
||||||
@ -524,7 +511,7 @@ export default class Service extends EventEmitter {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.runCommand({ rawArgv, args });
|
return this.runCommand({ rawArgv, args });
|
||||||
}
|
}
|
||||||
|
|
||||||
async runCommand({ rawArgv = {}, args = {} }) {
|
async runCommand({ rawArgv = {}, args = {} }) {
|
||||||
@ -555,6 +542,20 @@ export default class Service extends EventEmitter {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.parseCommand();
|
return this.parseCommand();
|
||||||
|
}
|
||||||
|
|
||||||
|
async parseCommand() {
|
||||||
|
this.program.on('--help', () => {
|
||||||
|
console.log();
|
||||||
|
console.log(
|
||||||
|
` Run ${chalk.cyan(
|
||||||
|
'fes <command> --help'
|
||||||
|
)} for detailed usage of given command.`
|
||||||
|
);
|
||||||
|
console.log();
|
||||||
|
});
|
||||||
|
this.program.commands.forEach(c => c.on('--help', () => console.log()));
|
||||||
|
return this.program.parseAsync(process.argv);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,5 @@
|
|||||||
import { relative } from 'path';
|
|
||||||
import { existsSync } from 'fs';
|
|
||||||
import { Logger } from '@webank/fes-compiler';
|
import { Logger } from '@webank/fes-compiler';
|
||||||
import {
|
|
||||||
cleanTmpPathExceptCache,
|
|
||||||
getBundleAndConfigs,
|
|
||||||
printFileSizes
|
|
||||||
} from '../buildDevUtils';
|
|
||||||
import generateFiles from '../../../utils/generateFiles';
|
|
||||||
import { build } from './build';
|
|
||||||
|
|
||||||
const logger = new Logger('fes:plugin-built-in');
|
const logger = new Logger('fes:plugin-built-in');
|
||||||
|
|
||||||
@ -21,6 +13,16 @@ export default function (api) {
|
|||||||
command: 'build',
|
command: 'build',
|
||||||
description: 'build application for production',
|
description: 'build application for production',
|
||||||
async fn() {
|
async fn() {
|
||||||
|
const { relative } = require('path');
|
||||||
|
const { existsSync } = require('fs');
|
||||||
|
const {
|
||||||
|
cleanTmpPathExceptCache,
|
||||||
|
getBundleAndConfigs,
|
||||||
|
printFileSizes
|
||||||
|
} = require('../buildDevUtils');
|
||||||
|
const generateFiles = require('../../../utils/generateFiles').default;
|
||||||
|
const { build } = require('./build');
|
||||||
|
|
||||||
cleanTmpPathExceptCache({
|
cleanTmpPathExceptCache({
|
||||||
absTmpPath: paths.absTmpPath
|
absTmpPath: paths.absTmpPath
|
||||||
});
|
});
|
||||||
|
@ -1,12 +1,4 @@
|
|||||||
import assert from 'assert';
|
const assert = require('assert');
|
||||||
import { delay } from '@umijs/utils';
|
|
||||||
import {
|
|
||||||
cleanTmpPathExceptCache,
|
|
||||||
getBundleAndConfigs
|
|
||||||
} from '../buildDevUtils';
|
|
||||||
import generateFiles from '../../../utils/generateFiles';
|
|
||||||
import { watchPkg } from './watchPkg';
|
|
||||||
import { startDevServer } from './devServer';
|
|
||||||
|
|
||||||
export default (api) => {
|
export default (api) => {
|
||||||
const {
|
const {
|
||||||
@ -38,6 +30,14 @@ export default (api) => {
|
|||||||
description: 'whether to turn on the https service'
|
description: 'whether to turn on the https service'
|
||||||
}],
|
}],
|
||||||
async fn({ args = {} }) {
|
async fn({ args = {} }) {
|
||||||
|
const {
|
||||||
|
cleanTmpPathExceptCache,
|
||||||
|
getBundleAndConfigs
|
||||||
|
} = require('../buildDevUtils');
|
||||||
|
const { delay } = require('@umijs/utils');
|
||||||
|
const generateFiles = require('../../../utils/generateFiles').default;
|
||||||
|
const { watchPkg } = require('./watchPkg');
|
||||||
|
|
||||||
const defaultPort = process.env.PORT || args.port || api.config.devServer?.port;
|
const defaultPort = process.env.PORT || args.port || api.config.devServer?.port;
|
||||||
port = await portfinder.getPortPromise({
|
port = await portfinder.getPortPromise({
|
||||||
port: defaultPort ? parseInt(String(defaultPort), 10) : 8000
|
port: defaultPort ? parseInt(String(defaultPort), 10) : 8000
|
||||||
@ -163,6 +163,7 @@ export default (api) => {
|
|||||||
initialValue: [],
|
initialValue: [],
|
||||||
args: {}
|
args: {}
|
||||||
});
|
});
|
||||||
|
const { startDevServer } = require('./devServer');
|
||||||
server = startDevServer({
|
server = startDevServer({
|
||||||
webpackConfig: bundleConfig,
|
webpackConfig: bundleConfig,
|
||||||
host: hostname,
|
host: hostname,
|
||||||
|
@ -4,7 +4,7 @@ export default function (api) {
|
|||||||
command: 'info',
|
command: 'info',
|
||||||
description: 'print debugging information about your environment',
|
description: 'print debugging information about your environment',
|
||||||
async fn() {
|
async fn() {
|
||||||
require('envinfo').run(
|
return require('envinfo').run(
|
||||||
{
|
{
|
||||||
System: ['OS', 'CPU'],
|
System: ['OS', 'CPU'],
|
||||||
Binaries: ['Node', 'Yarn', 'npm'],
|
Binaries: ['Node', 'Yarn', 'npm'],
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
|
|
||||||
import assert from 'assert';
|
|
||||||
import { getBundleAndConfigs } from '../buildDevUtils';
|
|
||||||
|
|
||||||
export default function (api) {
|
export default function (api) {
|
||||||
api.registerCommand({
|
api.registerCommand({
|
||||||
command: 'webpack',
|
command: 'webpack',
|
||||||
@ -23,11 +19,13 @@ export default function (api) {
|
|||||||
description: 'show full function definitions in output'
|
description: 'show full function definitions in output'
|
||||||
}],
|
}],
|
||||||
async fn({ options }) {
|
async fn({ options }) {
|
||||||
|
const assert = require('assert');
|
||||||
|
const { getBundleAndConfigs } = require('../buildDevUtils');
|
||||||
const { toString } = require('webpack-chain');
|
const { toString } = require('webpack-chain');
|
||||||
const { highlight } = require('cli-highlight');
|
const { highlight } = require('cli-highlight');
|
||||||
const { bundleConfig } = await getBundleAndConfigs({ api });
|
const { bundleConfig } = await getBundleAndConfigs({ api });
|
||||||
|
|
||||||
let config = bundleConfig.filter(bc => bc.entry?.index)[0];
|
let config = bundleConfig;
|
||||||
assert(config, 'No valid config found with fes entry.');
|
assert(config, 'No valid config found with fes entry.');
|
||||||
|
|
||||||
if (options.rule) {
|
if (options.rule) {
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
"build": "fes build",
|
"build": "fes build",
|
||||||
"prod": "FES_ENV=prod fes build",
|
"prod": "FES_ENV=prod fes build",
|
||||||
"analyze": "ANALYZE=1 fes build",
|
"analyze": "ANALYZE=1 fes build",
|
||||||
"dev": "fes dev --https",
|
"dev": "fes dev",
|
||||||
"test:unit": "fes test:unit"
|
"test": "fes test"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"管理端",
|
"管理端",
|
||||||
|
@ -56,6 +56,7 @@ const args = yParser(rawArgv);
|
|||||||
args,
|
args,
|
||||||
rawArgv
|
rawArgv
|
||||||
});
|
});
|
||||||
|
process.exit(0);
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(chalk.red(e.message));
|
console.error(chalk.red(e.message));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user