Major update to code structure
* Split files into independent files based on functionality.
* Switch to bower/gulp for build.
Change-Id: Ibc775dd9b7f6a0a49f63c22162b7582e781e2d9c
Signed-off-by: Iftekharul Islam <iislam@us.ibm.com>
diff --git a/gulpfile.js b/gulpfile.js
new file mode 100644
index 0000000..16d940f
--- /dev/null
+++ b/gulpfile.js
@@ -0,0 +1,14 @@
+/*eslint-env node */
+/*global require: true*/
+
+/**
+ * Gulp file declaration
+ */
+
+'use strict';
+
+var gulp = require('gulp');
+var sass = require('gulp-sass');
+
+// Load gulp tasks automatically
+require('gulp-load-tasks')('gulp_tasks');