mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
14 lines
223 B
JavaScript
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',
|
||
|
'webpack:prod',
|
||
|
]);
|
||
|
|
||
|
};
|