chore: update deps

This commit is contained in:
Vben
2021-03-26 21:16:08 +08:00
parent 2658e15dad
commit e090689ef5
16 changed files with 515 additions and 498 deletions

View File

@@ -1,6 +1,5 @@
// #!/usr/bin/env node
import { argv } from 'yargs';
import { runBuildConfig } from './buildConf';
import chalk from 'chalk';
@@ -8,10 +7,10 @@ import pkg from '../../package.json';
export const runBuild = async () => {
try {
const argvList = argv._;
const argvList = process.argv.splice(2);
// Generate configuration file
if (!argvList.includes('no-conf')) {
if (!argvList.includes('disabled-config')) {
await runBuildConfig();
}