Files
grafana/scripts/grunt/release_task.js
T

49 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-10-01 20:02:25 +02:00
var path = require('path');
module.exports = function(grunt) {
"use strict";
2018-05-08 09:42:20 +02:00
// build then zip
2017-10-01 20:02:25 +02:00
grunt.registerTask('release', [
'build',
'build-post-process',
'compress:release'
]);
2018-05-08 09:42:20 +02:00
// package into archives
grunt.registerTask('package', [
'clean:temp',
'build-post-process',
'compress:release'
]);
2017-10-01 20:02:25 +02:00
grunt.registerTask('build-post-process', function() {
grunt.config('copy.public_to_temp', {
expand: true,
cwd: '<%= srcDir %>',
src: '**/*',
dest: '<%= tempDir %>/public/',
});
grunt.config('copy.backend_bin', {
2018-05-08 09:42:20 +02:00
cwd: 'bin/<%= platform %>-<%= arch %>',
2017-10-01 20:02:25 +02:00
expand: true,
src: ['*'],
options: { mode: true},
dest: '<%= tempDir %>/bin/'
});
grunt.config('copy.backend_files', {
expand: true,
2018-01-25 11:05:59 +01:00
src: ['conf/**', 'tools/phantomjs/*', 'scripts/*'],
2017-10-01 20:02:25 +02:00
options: { mode: true},
dest: '<%= tempDir %>'
});
grunt.task.run('copy:public_to_temp');
grunt.task.run('copy:backend_bin');
grunt.task.run('copy:backend_files');
grunt.task.run('clean:packaging');
grunt.file.write(path.join(grunt.config('tempDir'), 'VERSION'), grunt.config('pkg.version'));
});
};