From 9bc4789a393e6633b1dc1f806f351fb81dd42974 Mon Sep 17 00:00:00 2001 From: koenemann Date: Tue, 13 Sep 2016 16:17:15 +0200 Subject: [PATCH] checking gulpfile.js --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 111d196..793d22f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -165,11 +165,9 @@ gulp.task('scripts', function() { // gulp copy-assets. // Copy all needed dependency assets files from bower_component assets to themes /js, /scss and /fonts folder. Run this task after bower install or bower update - ////////////////// All Bootstrap SASS Assets ///////////////////////// gulp.task('copy-assets', function() { - ////////////////// All Bootstrap 4 Assets ///////////////////////// // Copy all Bootstrap JS files gulp.src(basePaths.bower + 'bootstrap/dist/js/**/*.js') @@ -217,7 +215,9 @@ gulp.task('copy-assets', function() { .pipe(gulp.dest(basePaths.dev + '/css')); }); -// Run // gulp dist // Copies the files to the dist folder for distributon +// Run +// gulp dist +// Copies the files to the /dist folder for distributon gulp.task('dist', function() { gulp.src(['!sass','!bower_components', '!node_modules','!src','!dist','!bower.json', '!gulpfile.js', '!package.json', '*']) .pipe(gulp.dest('dist/'))