From c6f854e9489467a14eacb9ad9b82b15b81871758 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Sat, 19 Mar 2016 15:28:24 +0300 Subject: [PATCH] Fixed grunt tasks (copy files for trigger panel). --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index f9b5273..766f87e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -15,7 +15,7 @@ module.exports = function(grunt) { expand: true, src: [ '**/*', - '!**/*.js', + '!datasource-zabbix/*.js', '!**/*.scss' ], dest: 'dist/' @@ -46,7 +46,7 @@ module.exports = function(grunt) { cwd: 'src', expand: true, src: [ - '**/**/*.js' + 'datasource-zabbix/*.js' ], dest: 'dist/' }]