2014-05-31 08:20:12 -05:00
|
|
|
module.exports = function(config) {
|
|
|
|
return {
|
2014-06-01 09:57:59 -05:00
|
|
|
grafana: {
|
2014-05-31 08:20:12 -05:00
|
|
|
cwd: '<%= tempDir %>',
|
2015-02-02 15:15:15 -06:00
|
|
|
src: ['app/**/*.html'],
|
2014-05-31 08:20:12 -05:00
|
|
|
dest: '<%= tempDir %>/app/components/partials.js',
|
2014-06-01 09:57:59 -05:00
|
|
|
options: {
|
|
|
|
bootstrap: function(module, script) {
|
|
|
|
return "define('components/partials', ['angular'], function(angular) { \n" +
|
2014-07-28 11:11:52 -05:00
|
|
|
"angular.module('grafana').run(['$templateCache', function($templateCache) { \n" +
|
2014-06-01 09:57:59 -05:00
|
|
|
script +
|
|
|
|
'\n}]);' +
|
|
|
|
'\n});';
|
|
|
|
}
|
|
|
|
}
|
2014-05-31 08:20:12 -05:00
|
|
|
}
|
|
|
|
};
|
2014-11-11 14:06:01 -06:00
|
|
|
};
|