From 71748282b8e4fcff199a7315cb3bd244fdaff032 Mon Sep 17 00:00:00 2001 From: Itay Komemy Date: Thu, 15 Sep 2016 17:11:09 +0300 Subject: [PATCH] Wrong strict mode declaration --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 4e54d65..b7918ac 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,4 +1,4 @@ -'use script'; +'use strict'; var gulp = require('gulp'); var webserver = require('gulp-webserver'); @@ -47,4 +47,4 @@ gulp.task('validate-xml', function () { }); } } -}); \ No newline at end of file +});