From 0cca5cafdf6d8222114f656d6bd24fa668ab0e95 Mon Sep 17 00:00:00 2001
From: Phil Kunz <gitlab@philkunz.com>
Date: Fri, 13 Mar 2020 18:54:31 +0000
Subject: [PATCH] fix(core): update

---
 ts/tsbundle.class.tsbundle.ts | 2 +-
 ts/tsbundle.paths.ts          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ts/tsbundle.class.tsbundle.ts b/ts/tsbundle.class.tsbundle.ts
index 7f02253..d3ce2ba 100644
--- a/ts/tsbundle.class.tsbundle.ts
+++ b/ts/tsbundle.class.tsbundle.ts
@@ -5,7 +5,7 @@ export class TsBundle {
   /**
    * the basic default options for rollup
    */
-  public getBaseOptions(fromArg: string = `ts_web/index.ts`, toArg: string = 'dist_web/bundle.js') {
+  public getBaseOptions(fromArg: string = `ts_web/index.ts`, toArg: string = 'dist_ts_web/bundle.js') {
     logger.log('info', `from: ${fromArg}`);
     logger.log('info', `to: ${toArg}`);
 
diff --git a/ts/tsbundle.paths.ts b/ts/tsbundle.paths.ts
index 96e1b75..8ecaeb3 100644
--- a/ts/tsbundle.paths.ts
+++ b/ts/tsbundle.paths.ts
@@ -3,5 +3,5 @@ import * as plugins from './tsbundle.plugins';
 export const cwd = process.cwd();
 export const packageDir = plugins.path.join(__dirname, '../');
 export const htmlDir = plugins.path.join(cwd, './html');
-export const distWebDir = plugins.path.join(cwd, './dist_web');
+export const distWebDir = plugins.path.join(cwd, './dist_ts_web');
 export const assetsDir = plugins.path.join(packageDir, 'assets');