mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
handlebar partials are compiled into template.js
This commit is contained in:
parent
efa9cf6380
commit
4730bc796d
@ -74,6 +74,7 @@ module.exports = function (grunt) {
|
||||
handlebars: {
|
||||
options: {
|
||||
namespace : "Templates",
|
||||
partialRegex: /Partial.html/,
|
||||
wrapped : true,
|
||||
processName: function (fileName) {
|
||||
return fileName
|
||||
@ -83,14 +84,14 @@ module.exports = function (grunt) {
|
||||
}
|
||||
},
|
||||
files : {
|
||||
src : ['UI/**/*emplate.html'],
|
||||
src : ['UI/**/*emplate.html','UI/**/*Partial.html'],
|
||||
dest: '_output/UI/templates.js'
|
||||
}
|
||||
},
|
||||
|
||||
copy: {
|
||||
index : {
|
||||
src : 'UI/**/index.html',
|
||||
src : 'UI/index.html',
|
||||
dest: '_output/'
|
||||
},
|
||||
scripts: {
|
||||
@ -144,7 +145,7 @@ module.exports = function (grunt) {
|
||||
files: '<%= copy.images.src %>',
|
||||
tasks: ['copy:images']
|
||||
},
|
||||
copyImages : {
|
||||
copyJpg : {
|
||||
files: '<%= copy.jpg.src %>',
|
||||
tasks: ['copy:jpg']
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user