grafana/scripts/grunt/build_task.js

14 lines
223 B
JavaScript

module.exports = function(grunt) {
"use strict";
// Concat and Minify the src directory into dist
grunt.registerTask('build', [
'clean:release',
'clean:build',
'phantomjs',
'exec:webpack',
]);
};