add modPurge

This commit is contained in:
Philipp Kunz 2017-06-05 22:08:49 +02:00
parent 8f81c71de7
commit bdce1dbded
3 changed files with 4 additions and 0 deletions

1
ts/mod_purge/index.ts Normal file
View File

@ -0,0 +1 @@
import * as plugins from '../npmci.plugins'

View File

@ -0,0 +1 @@
export * from '../npmci.plugins'

View File

@ -4,6 +4,7 @@ import * as _modCommand from './mod_command/index'
import * as _modDocker from './mod_docker/index'
import * as _modInstall from './mod_install/index'
import * as _modPublish from './mod_publish/index'
import * as _modPurge from './mod_purge/index'
import * as _modPrepare from './mod_prepare/index'
import * as _modTrigger from './mod_trigger/index'
import * as _modTest from './mod_test/index'
@ -16,6 +17,7 @@ export let modCommand = new LazyModule<typeof _modCommand>('./mod_command/index'
export let modDocker = new LazyModule<typeof _modDocker>('./mod_docker/index', __dirname)
export let modInstall = new LazyModule<typeof _modInstall>('./mod_install/index', __dirname)
export let modPublish = new LazyModule<typeof _modPublish>('./mod_publish/index', __dirname)
export let modPurge = new LazyModule<typeof _modPurge>('./mod_purge/index', __dirname)
export let modPrepare = new LazyModule<typeof _modPrepare>('./mod_prepare/index', __dirname)
export let modTrigger = new LazyModule<typeof _modTrigger>('./mod_trigger/index', __dirname)
export let modTest = new LazyModule<typeof _modTest>('./mod_test/index',__dirname)