This commit is contained in:
2018-03-07 22:22:15 +01:00
commit b9990c3953
15 changed files with 1344 additions and 0 deletions

1
ts/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './smartuniverse.classes.smartuniverse';

View File

@ -0,0 +1,5 @@
import * as plugins from './smartuniverse.plugins';
export Smartuniverse {
}

9
ts/smartuniverse.cli.ts Normal file
View File

@ -0,0 +1,9 @@
import * as plugins from './smartuniverse.plugins';
process.env.CLI = 'true';
const universeCli = new plugins.smartcli.Smartcli();
universeCli.standardTask().then(argvArg => {
});

View File

@ -0,0 +1,4 @@
import * as smartcli from 'smartcli';
import * as smartexpress from 'smartexpress';
export { smartcli, smartexpress };