service files refactor

This commit is contained in:
Alexander Zobnin
2017-06-18 12:26:42 +03:00
parent a7f57e41a2
commit 887f8da188
2 changed files with 26 additions and 27 deletions

View File

@@ -128,20 +128,20 @@ module.exports = function(grunt) {
grunt.registerTask('default', [ grunt.registerTask('default', [
'clean', 'clean',
'sass',
'copy:src_to_dist', 'copy:src_to_dist',
'copy:pluginDef', 'copy:pluginDef',
'jshint', 'jshint',
'jscs', 'jscs',
'sass',
'babel', 'babel',
'mochaTest' 'mochaTest'
]); ]);
grunt.registerTask('watchTask', [ grunt.registerTask('watchTask', [
'clean', 'clean',
'sass',
'copy:src_to_dist', 'copy:src_to_dist',
'copy:pluginDef', 'copy:pluginDef',
'sass',
'babel', 'babel',
'jshint', 'jshint',
'jscs' 'jscs'

View File

@@ -16,35 +16,34 @@
"url": "https://github.com/alexanderzobnin/grafana-zabbix/issues" "url": "https://github.com/alexanderzobnin/grafana-zabbix/issues"
}, },
"devDependencies": { "devDependencies": {
"grunt": "~0.4.5",
"babel": "~6.5.1", "babel": "~6.5.1",
"grunt-babel": "~6.0.0", "babel-plugin-transform-es2015-for-of": "^6.6.0",
"grunt-sass": "^1.1.0", "babel-plugin-transform-es2015-modules-systemjs": "^6.5.0",
"grunt-contrib-copy": "~0.8.2", "babel-preset-es2015": "^6.5.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-uglify": "~0.11.0",
"grunt-mocha-test": "~0.12.7",
"grunt-systemjs-builder": "^0.2.5",
"load-grunt-tasks": "~3.2.0",
"grunt-execute": "~0.2.2",
"grunt-contrib-clean": "~0.6.0",
"prunk": "~1.2.1",
"jsdom": "~3.1.2",
"q": "~1.4.1",
"chai": "~3.5.0", "chai": "~3.5.0",
"sinon-chai": "~2.8.0", "grunt": "~0.4.5",
"moment": "~2.14.1" "grunt-babel": "~6.0.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "~0.8.2",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "~0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-execute": "~0.2.2",
"grunt-jscs": "^2.8.0",
"grunt-mocha-test": "~0.12.7",
"grunt-sass": "^1.1.0",
"grunt-systemjs-builder": "^0.2.5",
"jsdom": "~3.1.2",
"jshint-stylish": "^2.1.0",
"load-grunt-tasks": "~3.2.0",
"mocha": "^2.4.5",
"moment": "~2.14.1",
"prunk": "~1.2.1",
"q": "~1.4.1",
"sinon-chai": "~2.8.0"
}, },
"dependencies": { "dependencies": {
"babel-plugin-transform-es2015-modules-systemjs": "^6.5.0", "lodash": "~4.0.0"
"babel-plugin-transform-es2015-for-of": "^6.6.0",
"babel-preset-es2015": "^6.5.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-jscs": "^2.8.0",
"jshint-stylish": "^2.1.0",
"lodash": "~4.0.0",
"mocha": "^2.4.5",
"sinon": "~1.16.1"
}, },
"homepage": "http://grafana-zabbix.org" "homepage": "http://grafana-zabbix.org"
} }