From bdce1dbdeded6a9dedb30b07ec12cce8c30c76fb Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 5 Jun 2017 22:08:49 +0200 Subject: [PATCH] add modPurge --- ts/mod_purge/index.ts | 1 + ts/mod_purge/mod.plugins.ts | 1 + ts/npmci.mods.ts | 2 ++ 3 files changed, 4 insertions(+) create mode 100644 ts/mod_purge/index.ts create mode 100644 ts/mod_purge/mod.plugins.ts diff --git a/ts/mod_purge/index.ts b/ts/mod_purge/index.ts new file mode 100644 index 0000000..ab6adfa --- /dev/null +++ b/ts/mod_purge/index.ts @@ -0,0 +1 @@ +import * as plugins from '../npmci.plugins' diff --git a/ts/mod_purge/mod.plugins.ts b/ts/mod_purge/mod.plugins.ts new file mode 100644 index 0000000..f9883a8 --- /dev/null +++ b/ts/mod_purge/mod.plugins.ts @@ -0,0 +1 @@ +export * from '../npmci.plugins' diff --git a/ts/npmci.mods.ts b/ts/npmci.mods.ts index 13829ba..7548a27 100644 --- a/ts/npmci.mods.ts +++ b/ts/npmci.mods.ts @@ -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('./mod_command/index' export let modDocker = new LazyModule('./mod_docker/index', __dirname) export let modInstall = new LazyModule('./mod_install/index', __dirname) export let modPublish = new LazyModule('./mod_publish/index', __dirname) +export let modPurge = new LazyModule('./mod_purge/index', __dirname) export let modPrepare = new LazyModule('./mod_prepare/index', __dirname) export let modTrigger = new LazyModule('./mod_trigger/index', __dirname) export let modTest = new LazyModule('./mod_test/index',__dirname)