jgb-cli
Version:
```shell npm i -g jgb-cli #全局安装 ```
22 lines (18 loc) • 434 B
text/typescript
import { Config, IInitOptions } from 'jgb-shared/lib';
import Core from '../core';
export default async function builder(main: any = [], command: any = {}) {
const config = (await Config.load(process.cwd(), [
'jgb.config.js'
])) as IInitOptions;
const core = new Core(
Object.assign(
{
cache: true
},
config,
command
)
);
// console.log(main, command);
await core.start();
}