diff --git a/gulpfile.js/config.js b/gulpfile.js/config.js index e06f69239c..e9c7c2ff42 100644 --- a/gulpfile.js/config.js +++ b/gulpfile.js/config.js @@ -61,4 +61,4 @@ module.exports = { apps: apps, srcDir: srcDir, destDir: destDir -} \ No newline at end of file +} diff --git a/gulpfile.js/index.js b/gulpfile.js/index.js index c198225bf1..d68000a654 100644 --- a/gulpfile.js/index.js +++ b/gulpfile.js/index.js @@ -1,2 +1,2 @@ var requireDir = require('require-dir'); -requireDir('./tasks', { recurse: true }); \ No newline at end of file +requireDir('./tasks', { recurse: true }); diff --git a/gulpfile.js/lib/simplyCopy.js b/gulpfile.js/lib/simplyCopy.js index 30e253bbae..6ecfff91df 100644 --- a/gulpfile.js/lib/simplyCopy.js +++ b/gulpfile.js/lib/simplyCopy.js @@ -32,4 +32,4 @@ var simpleCopyTask = function(glob) { }; }; -module.exports = simpleCopyTask; \ No newline at end of file +module.exports = simpleCopyTask; diff --git a/gulpfile.js/tasks/build.js b/gulpfile.js/tasks/build.js index ce105de0cd..42178ccef9 100644 --- a/gulpfile.js/tasks/build.js +++ b/gulpfile.js/tasks/build.js @@ -1,3 +1,3 @@ var gulp = require('gulp'); -gulp.task('build', ['styles', 'scripts', 'images', 'fonts']); \ No newline at end of file +gulp.task('build', ['styles', 'scripts', 'images', 'fonts']); diff --git a/gulpfile.js/tasks/default.js b/gulpfile.js/tasks/default.js index 57f2678a9f..3ba6aabf81 100644 --- a/gulpfile.js/tasks/default.js +++ b/gulpfile.js/tasks/default.js @@ -1,3 +1,3 @@ var gulp = require('gulp'); -gulp.task('default', ['build', 'watch']); \ No newline at end of file +gulp.task('default', ['build', 'watch']); diff --git a/gulpfile.js/tasks/fonts.js b/gulpfile.js/tasks/fonts.js index 9b8813a61d..5dcdfeeb75 100644 --- a/gulpfile.js/tasks/fonts.js +++ b/gulpfile.js/tasks/fonts.js @@ -1,4 +1,4 @@ var gulp = require('gulp'); var simpleCopyTask = require('../lib/simplyCopy'); -gulp.task('fonts', simpleCopyTask('fonts/**/*')); \ No newline at end of file +gulp.task('fonts', simpleCopyTask('fonts/**/*')); diff --git a/gulpfile.js/tasks/images.js b/gulpfile.js/tasks/images.js index f02632c2b6..a3db1ede87 100644 --- a/gulpfile.js/tasks/images.js +++ b/gulpfile.js/tasks/images.js @@ -1,4 +1,4 @@ var gulp = require('gulp'); var simpleCopyTask = require('../lib/simplyCopy'); -gulp.task('images', simpleCopyTask('images/**/*')); \ No newline at end of file +gulp.task('images', simpleCopyTask('images/**/*')); diff --git a/gulpfile.js/tasks/scripts.js b/gulpfile.js/tasks/scripts.js index a34e58f1b9..9efd48d260 100644 --- a/gulpfile.js/tasks/scripts.js +++ b/gulpfile.js/tasks/scripts.js @@ -1,4 +1,4 @@ var gulp = require('gulp'); var simpleCopyTask = require('../lib/simplyCopy'); -gulp.task('scripts', simpleCopyTask('js/**/*')); \ No newline at end of file +gulp.task('scripts', simpleCopyTask('js/**/*'));