diff --git a/gulpfile.js b/gulpfile.js
index 66b6d93..28f1a31 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -11,6 +11,7 @@ var tap = require('gulp-tap');
var path = require('path');
var cached = require('gulp-cached');
var remember = require('gulp-remember');
+var inject = require('gulp-inject');
var paths = {
// see overrides in bower.json
@@ -105,4 +106,12 @@ gulp.task('debug', function() {
//return gulp.src(mainBowerFiles({debugging: true}));
});
+gulp.task('inject', function () {
+ var target = gulp.src('index.html');
+ var sources = gulp.src(paths.scripts, { base: '.', read: false });
+
+ return target.pipe(inject(sources, { relative: true }))
+ .pipe(gulp.dest('.'));
+});
+
gulp.task('default', ['clean', 'scripts', 'styles', 'images', 'fonts']);
diff --git a/index.html b/index.html
index 8ad94eb..62cc100 100644
--- a/index.html
+++ b/index.html
@@ -70,6 +70,11 @@
+
+
+
-