From 52b8d9a2d4de3f46a416917ff498f0c2bb8dee03 Mon Sep 17 00:00:00 2001 From: Elliot Hesp Date: Mon, 1 Dec 2014 19:58:01 +0000 Subject: [PATCH] Updated gulpfile formatting --- gulpfile.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 5b575648..0a5166d5 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,14 +1,14 @@ var elixir = require('laravel-elixir'); elixir(function(mix) { - mix.scripts([ - 'bower_components/jquery/dist/jquery.min.js', - 'bower_components/chartjs/Chart.min.js', - 'bower_components/rivets/dist/riverts.bundle.js', - 'js/**/*.js', - ], 'app/assets') - .styles([ - 'bower_components/cachet-ui/dist/cachet.min.css', - ], 'app/assets') - .version(['public/css/all.css', 'public/js/all.js'], 'public'); + mix.scripts([ + 'bower_components/jquery/dist/jquery.min.js', + 'bower_components/chartjs/Chart.min.js', + 'bower_components/rivets/dist/riverts.bundle.js', + 'js/**/*.js', + ], 'app/assets') + .styles([ + 'bower_components/cachet-ui/dist/cachet.min.css', + ], 'app/assets') + .version(['public/css/all.css', 'public/js/all.js'], 'public'); });