From cce62b52baf8c3c1017fcace31a1151b702ba650 Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Wed, 8 Jun 2016 18:30:02 +0100 Subject: [PATCH] Watching 'app' folder in demo shell for live reload --- demo-shell-ng2/browser-sync-config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/demo-shell-ng2/browser-sync-config.js b/demo-shell-ng2/browser-sync-config.js index 0f4ddb1677..dac89903d2 100644 --- a/demo-shell-ng2/browser-sync-config.js +++ b/demo-shell-ng2/browser-sync-config.js @@ -8,7 +8,9 @@ browserSync.init({ middleware: [ historyApiFallback() ] }, - files: ['dist/**/*.{html,htm,css,js}', + files: [ + 'app/**/*.{html,htm,css,js}', + 'dist/**/*.{html,htm,css,js}', 'node_modules/ng2-alfresco-core/dist/**/*.{html,htm,css,js}', 'node_modules/ng2-alfresco-datatable/dist/**/*.{html,htm,css,js}', 'node_modules/ng2-alfresco-documentlist/dist/**/*.{html,htm,css,js}',