Directives refactor.

This commit is contained in:
Alexander Zobnin
2016-03-19 14:20:55 +03:00
parent e8b4a4319c
commit e74824f840
3 changed files with 303 additions and 329 deletions

View File

@@ -15,16 +15,7 @@ module.exports = function(grunt) {
expand: true,
src: [
'**/*',
'!**/datasource.js',
'!**/module.js',
'!**/query.controller.js',
'!**/utils.js',
'!**/DataProcessor.js',
'!**/zabbixAPICore.service.js',
'!**/zabbixAPI.service.js',
'!**/queryProcessor.service.js',
'!**/zabbixCache.service.js',
'!**/metricFunctions.js',
'!**/*.js',
'!**/*.scss'
],
dest: 'dist/'
@@ -55,16 +46,7 @@ module.exports = function(grunt) {
cwd: 'src',
expand: true,
src: [
'**/**/module.js',
'**/**/datasource.js',
'**/**/query.controller.js',
'**/**/utils.js',
'**/**/DataProcessor.js',
'**/**/zabbixAPICore.service.js',
'**/**/zabbixAPI.service.js',
'**/**/queryProcessor.service.js',
'**/**/zabbixCache.service.js',
'**/**/metricFunctions.js'
'**/**/*.js'
],
dest: 'dist/'
}]