smartuniverse/ts/smartuniverse.cli.ts
2018-03-08 23:42:46 +01:00

14 lines
293 B
TypeScript

import * as plugins from './smartuniverse.plugins';
import { SmartUniverse } from './index';
process.env.CLI = 'true';
const universeCli = new plugins.smartcli.Smartcli();
universeCli.standardTask().then(argvArg => {
const standardUniverse = new SmartUniverse({
port: 8765
});
});