Compile protocol buffers first

This commit is contained in:
Daniel Gasienica 2018-05-07 19:05:49 -04:00
parent 2810f26461
commit 4e39882afc

View file

@ -506,11 +506,11 @@ module.exports = function(grunt) {
grunt.registerTask('copy_dist', ['gitinfo', 'copy:res', 'copy:src']); grunt.registerTask('copy_dist', ['gitinfo', 'copy:res', 'copy:src']);
grunt.registerTask('date', ['gitinfo', 'getExpireTime']); grunt.registerTask('date', ['gitinfo', 'getExpireTime']);
grunt.registerTask('default', [ grunt.registerTask('default', [
'exec:build-protobuf',
'exec:transpile',
'concat', 'concat',
'copy:deps', 'copy:deps',
'sass', 'sass',
'date', 'date',
'exec:build-protobuf',
'exec:transpile',
]); ]);
}; };