grafana/tasks/systemjs_task.js

38 lines
1.0 KiB
JavaScript

module.exports = function(grunt) {
"use strict";
grunt.registerTask('systemjs:build', function() {
var Builder = require('systemjs-builder');
var done = this.async();
// optional constructor options
// sets the baseURL and loads the configuration file
var builder = new Builder('public_gen', 'public_gen/app/system.conf.js');
console.log('Starting systemjs-builder');
var modules = [
'app/app',
'app/features/all',
'app/plugins/panel/**/module',
'app/plugins/datasource/graphite/module',
'app/plugins/datasource/influxdb/module',
'app/plugins/datasource/elasticsearch/module',
];
var expression = modules.join(' + ');
builder
.bundle(expression, 'public_gen/app/app_bundle.js')
.then(function() {
console.log('Build complete');
done();
grunt.task.run('concat:bundle_and_boot');
})
.catch(function(err) {
console.log('Build error');
console.log(err);
done(false);
});
});
};