initial
This commit is contained in:
1
ts/index.ts
Normal file
1
ts/index.ts
Normal file
@ -0,0 +1 @@
|
||||
export * from './smartuniverse.classes.smartuniverse';
|
5
ts/smartuniverse.classes.smartuniverse.ts
Normal file
5
ts/smartuniverse.classes.smartuniverse.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import * as plugins from './smartuniverse.plugins';
|
||||
|
||||
export Smartuniverse {
|
||||
|
||||
}
|
9
ts/smartuniverse.cli.ts
Normal file
9
ts/smartuniverse.cli.ts
Normal 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 => {
|
||||
|
||||
});
|
4
ts/smartuniverse.plugins.ts
Normal file
4
ts/smartuniverse.plugins.ts
Normal file
@ -0,0 +1,4 @@
|
||||
import * as smartcli from 'smartcli';
|
||||
import * as smartexpress from 'smartexpress';
|
||||
|
||||
export { smartcli, smartexpress };
|
Reference in New Issue
Block a user