mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -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',
|
|
'exec:webpack',
|
|
]);
|
|
|
|
};
|