From 80dfe007436dc0e28468e1fe1fdf55384089660a Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Wed, 8 May 2019 11:05:13 +0200 Subject: [PATCH] fix(core): update --- ts/index.ts | 2 +- ts/{tsbundle.logger.ts => tsbundle.logging.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename ts/{tsbundle.logger.ts => tsbundle.logging.ts} (100%) diff --git a/ts/index.ts b/ts/index.ts index 18246ac..bed8795 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -1,7 +1,7 @@ import * as early from '@pushrocks/early'; early.start('tsbundle'); import * as plugins from './tsbundle.plugins'; -import { logger } from './tsbundle.logger'; +import { logger } from './tsbundle.logging'; early.stop(); const rollupOptions: plugins.rollup.RollupOptions = { diff --git a/ts/tsbundle.logger.ts b/ts/tsbundle.logging.ts similarity index 100% rename from ts/tsbundle.logger.ts rename to ts/tsbundle.logging.ts