From 62fedd13347cb2ae00ec472bbbd6418af91c6a87 Mon Sep 17 00:00:00 2001 From: Steve Clements Date: Tue, 3 Nov 2015 15:52:17 +0000 Subject: [PATCH 1/2] added a couple of platform dependent files to gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 3f362d3c..3a403425 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ build.xml .bower-registry .bower-tmp .tmp +.bower.json generated bower_components node_modules @@ -23,6 +24,7 @@ server/**/*.map test_out/* PhantomJS_1.9.8_(Linux_0.0.0)/test_out/unit.xml +PhantomJS_1.9.8_(Mac_OS_X_0.0.0)/test_out/unit.xml lib-cov *.seed From 8a7967cf56ca2342cff7d2a70ccd385c41917133 Mon Sep 17 00:00:00 2001 From: Steve Clements Date: Tue, 3 Nov 2015 16:18:03 +0000 Subject: [PATCH 2/2] added watch task to gulp to auto-build. --- gulpfile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 2633a575..d3fc6e55 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -10,6 +10,10 @@ var testFiles = []; // Declared in the karma.conf.js var rootDir = process.cwd(); var distDirectory = 'dist'; +gulp.task('watch', function(){ + gulp.watch(['js/**/*.ts', 'server/data_form.ts'], ['build']); +}) + /** * Main task: cleans, builds, run tests, and bundles up for distribution. */