Add bootstrap and jquery to gulp build

Currently we aren't using gulp-sass, but we are making use of the JS concat
This commit is contained in:
Tom Price
2017-05-09 13:38:39 +01:00
parent 41196b6447
commit 8ef755ce05
38 changed files with 60 additions and 5803 deletions

View File

@@ -44,8 +44,7 @@ gulp.task('watch', function () {
// JS
var JS_LIBS = [
'./node_modules/jquery/dist/jquery.js',
'./node_modules/tether/dist/js/tether.js',
'./node_modules/jquery/jquery.js',
'./node_modules/bootstrap/dist/js/bootstrap.js'
];
@@ -63,6 +62,6 @@ gulp.task('js_lib', function () {
// Frontend tasks
gulp.task('frontend', [
'css',
// 'css',
'js_lib'
]);