2014-05-31 08:20:12 -05:00
|
|
|
module.exports = function(config) {
|
|
|
|
return {
|
2014-06-01 09:57:59 -05:00
|
|
|
grafana: {
|
2015-09-10 05:42:24 -05:00
|
|
|
cwd: '<%= genDir %>',
|
2015-02-02 15:15:15 -06:00
|
|
|
src: ['app/**/*.html'],
|
2015-11-12 07:28:35 -06:00
|
|
|
dest: '<%= genDir %>/app/core/partials.js',
|
2014-06-01 09:57:59 -05:00
|
|
|
options: {
|
2016-02-01 12:00:40 -06:00
|
|
|
prefix: 'public/',
|
2014-06-01 09:57:59 -05:00
|
|
|
bootstrap: function(module, script) {
|
2015-11-12 07:28:35 -06:00
|
|
|
return "define('app/core/partials', ['app/core/core_module'], function(coreModule) { \n" +
|
2015-12-21 03:02:39 -06:00
|
|
|
"coreModule.default.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
|
|
|
};
|