From 4e39882afc98783b4864f8a226b4bd5121b0a26e Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Mon, 7 May 2018 19:05:49 -0400 Subject: [PATCH] Compile protocol buffers first --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 1ba0900262..4b23b8bdad 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -506,11 +506,11 @@ module.exports = function(grunt) { grunt.registerTask('copy_dist', ['gitinfo', 'copy:res', 'copy:src']); grunt.registerTask('date', ['gitinfo', 'getExpireTime']); grunt.registerTask('default', [ + 'exec:build-protobuf', + 'exec:transpile', 'concat', 'copy:deps', 'sass', 'date', - 'exec:build-protobuf', - 'exec:transpile', ]); };