mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -06:00
8 lines
179 B
JavaScript
8 lines
179 B
JavaScript
module.exports = function(grunt) {
|
|
"use strict";
|
|
|
|
// build, then zip and upload to s3
|
|
grunt.registerTask('release', ['build', 'build-post-process','compress:release']);
|
|
|
|
};
|