build: moved copy node modules ahead of tslint

This commit is contained in:
Torkel Ödegaard 2017-04-20 11:26:30 +02:00
parent f1276774a0
commit 4368c5a896
2 changed files with 3 additions and 2 deletions

View File

@ -144,6 +144,7 @@ module.directive('grafanaPanel', function($rootScope, $document) {
function updatePanelCornerInfo() {
var cornerMode = ctrl.getInfoMode();
console.log('update error', cornerMode);
cornerInfoElem[0].className = 'panel-info-corner panel-info-corner--' + cornerMode;
if (cornerMode) {

View File

@ -16,10 +16,10 @@ module.exports = function(grunt) {
grunt.registerTask('default', [
'jscs',
'jshint',
'exec:tslint',
'clean:gen',
'copy:node_modules',
'copy:public_to_gen',
'exec:tslint',
'clean:gen',
'phantomjs',
'css',
'exec:tscompile'