From c6659478416315e420701d5b6a2c6f888682f528 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Tue, 27 Sep 2016 20:32:21 +0300 Subject: [PATCH] Run jshint and jscs tasks before babel transpiler. --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index a26d125..f3ca1e0 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -99,9 +99,9 @@ module.exports = function(grunt) { 'clean', 'copy:src_to_dist', 'copy:pluginDef', - 'sass', - 'babel', 'jshint', - 'jscs' + 'jscs', + 'sass', + 'babel' ]); };