From 8aa417b5b10668a47cbc50e6ed5d3e3bcc444ca4 Mon Sep 17 00:00:00 2001 From: Addy Osmani Date: Mon, 29 Jun 2015 18:57:45 +0100 Subject: [PATCH] Make JSCS happy --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index ab388454..942cee01 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -465,14 +465,14 @@ gulp.task('serve', ['default'], function() { // Generate release archive containing just JS, CSS, Source Map deps gulp.task('zip:mdl', function() { - gulp.src(['dist/material.*@(js|css)?(.map)','LICENSE']) + gulp.src(['dist/material.*@(js|css)?(.map)', 'LICENSE']) .pipe($.zip('mdl.zip')) .pipe(gulp.dest('dist')); }); // Generate release archive containing the library, templates and site gulp.task('zip:site', function() { - gulp.src(['dist/**/*','LICENSE']) + gulp.src(['dist/**/*', 'LICENSE']) .pipe($.zip('mdl-all.zip')) .pipe(gulp.dest('dist')); });