npmci/ts/npmci.cli.ts

123 lines
2.5 KiB
TypeScript
Raw Normal View History

2018-04-04 20:25:13 +00:00
import * as plugins from './npmci.plugins';
import * as paths from './npmci.paths';
import * as npmciMonitor from './npmci.monitor';
npmciMonitor.run();
2017-09-08 12:58:44 +00:00
// Get Info about npmci itself
2018-04-04 20:25:13 +00:00
let npmciInfo = new plugins.projectinfo.ProjectinfoNpm(paths.NpmciPackageRoot);
plugins.beautylog.log('npmci version: ' + npmciInfo.version);
2017-05-18 20:40:09 +00:00
2018-04-04 20:25:13 +00:00
import * as NpmciEnv from './npmci.env';
2017-05-18 20:40:09 +00:00
2018-04-04 20:25:13 +00:00
import * as npmciMods from './npmci.mods';
2017-05-18 20:40:09 +00:00
2018-04-04 20:25:13 +00:00
let smartcli = new plugins.smartcli.Smartcli();
smartcli.addVersion(npmciInfo.version);
2017-05-18 20:40:09 +00:00
// clean
2018-04-04 20:25:13 +00:00
smartcli
.addCommand('clean')
.then(async argv => {
let modClean = await npmciMods.modClean.load();
await modClean.clean();
2017-05-18 20:40:09 +00:00
})
2018-04-04 20:25:13 +00:00
.catch(err => {
console.log(err);
process.exit(1);
});
2017-05-18 20:40:09 +00:00
2017-08-27 13:24:17 +00:00
// cloudflare
2018-04-04 20:25:13 +00:00
smartcli
.addCommand('cloudflare')
.then(async argvArg => {
let modPurge = await npmciMods.modCloudflare.load();
await modPurge.handleCli(argvArg);
})
.catch(err => {
console.log(err);
});
2017-08-27 13:24:17 +00:00
2017-05-18 20:40:09 +00:00
// command
2018-04-04 20:25:13 +00:00
smartcli
.addCommand('command')
.then(async argv => {
let modCommand = await npmciMods.modCommand.load();
await modCommand.command();
2017-05-18 20:40:09 +00:00
})
2018-04-04 20:25:13 +00:00
.catch(err => {
console.log(err);
process.exit(1);
});
2017-05-18 20:40:09 +00:00
2017-09-08 12:58:44 +00:00
// command
2018-04-04 20:25:13 +00:00
smartcli
.addCommand('git')
.then(async argvArg => {
let modGit = await npmciMods.modGit.load();
await modGit.handleCli(argvArg);
})
.catch(err => {
console.log(err);
process.exit(1);
});
2017-09-08 12:58:44 +00:00
2017-08-27 13:24:17 +00:00
// build
2018-04-04 20:25:13 +00:00
smartcli
.addCommand('docker')
2017-08-27 13:24:17 +00:00
.then(async argvArg => {
2018-04-04 20:25:13 +00:00
let modDocker = await npmciMods.modDocker.load();
await modDocker.handleCli(argvArg);
2017-05-18 20:40:09 +00:00
})
2018-04-04 20:25:13 +00:00
.catch(err => {
console.log(err);
process.exit(1);
});
2017-05-18 20:40:09 +00:00
2017-08-27 13:24:17 +00:00
// node
2018-04-04 20:25:13 +00:00
smartcli
.addCommand('node')
.then(async argvArg => {
let modNode = await npmciMods.modNode.load();
await modNode.handleCli(argvArg);
2017-05-18 20:40:09 +00:00
})
2018-04-04 20:25:13 +00:00
.catch(err => {
console.log(err);
});
2017-05-18 20:40:09 +00:00
2017-08-27 13:24:17 +00:00
// npm
2018-04-04 20:25:13 +00:00
smartcli
.addCommand('npm')
.then(async argvArg => {
let modNpm = await npmciMods.modNpm.load();
await modNpm.handleCli(argvArg);
2017-05-18 20:40:09 +00:00
})
2018-04-04 20:25:13 +00:00
.catch(err => {
console.log(err);
});
2017-05-18 20:40:09 +00:00
2017-08-27 13:24:17 +00:00
// trigger
2018-04-04 20:25:13 +00:00
smartcli
.addCommand('ssh')
.then(async argvArg => {
let modSsh = await npmciMods.modSsh.load();
await modSsh.handleCli(argvArg);
2017-05-18 20:40:09 +00:00
})
2018-04-04 20:25:13 +00:00
.catch(err => {
console.log(err);
process.exit(1);
});
2017-05-18 20:40:09 +00:00
// trigger
2018-04-04 20:25:13 +00:00
smartcli
.addCommand('trigger')
.then(async argv => {
let modTrigger = await npmciMods.modTrigger.load();
await modTrigger.trigger();
2017-05-18 20:40:09 +00:00
})
2018-04-04 20:25:13 +00:00
.catch(err => {
console.log(err);
process.exit(1);
});
2017-05-18 20:40:09 +00:00
2018-04-04 20:25:13 +00:00
smartcli.startParse();