| 12345678910111213141516171819202122232425262728293031323334353637 |
- 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/panels/**/module',
- 'app/plugins/datasource/graphite/datasource',
- 'app/plugins/datasource/influxdb/datasource',
- 'app/plugins/datasource/elasticsearch/datasource',
- ];
- 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);
- });
- });
- };
|