From 0fa0c8c948a70e376ff99678e0659ddb306648be Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Tue, 15 Nov 2016 08:44:08 +0100 Subject: [PATCH] bugfix(buildUpdate): export BuildUpdate from watch rather than build https://github.com/driftyco/ionic-app-scripts/issues/366#issuecomment-260546113 --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 309718dc..4036c58a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -export { build, buildUpdate } from './build'; +export { build } from './build'; export { bundle, bundleUpdate } from './bundle'; export { clean } from './clean'; export { cleancss } from './cleancss'; @@ -9,7 +9,7 @@ export { ngc } from './ngc'; export { sass, sassUpdate } from './sass'; export { transpile } from './transpile'; export { uglifyjs } from './uglifyjs'; -export { watch } from './watch'; +export { watch, buildUpdate } from './watch'; export * from './util/config'; export * from './util/helpers'; export * from './util/interfaces';