added precompiling of handlebar templates to grunt.
This commit is contained in:
parent
fb47bac883
commit
9ddfe34acc
42
Gruntfile.js
42
Gruntfile.js
|
@ -12,23 +12,51 @@ module.exports = function(grunt) {
|
|||
ext: '.min.js' // Dest filepaths will have this extension.
|
||||
}
|
||||
},
|
||||
less:{
|
||||
bootstrap:{
|
||||
files: {
|
||||
"NzbDrone.Backbone/Content/bootstrap.css": "NzbDrone.Backbone/Content/Bootstrap/bootstrap.less"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
handlebars: {
|
||||
options: {
|
||||
namespace: "NzbDrone.Templates"
|
||||
namespace: "NzbDrone.Templates",
|
||||
wrapped: false,
|
||||
processName: function(fileName){
|
||||
return fileName
|
||||
.replace('NzbDrone.Backbone/','')
|
||||
.replace('.html','');
|
||||
}
|
||||
},
|
||||
files: {
|
||||
expand: true, // Enable dynamic expansion.
|
||||
cwd: 'NzbDrone.Backbone/', // Src matches are relative to this path.
|
||||
src: ['**/*Template.html'],
|
||||
ext: '.hbs' // Actual pattern(s) to match.
|
||||
src: ['NzbDrone.Backbone/**/*emplate.html'],
|
||||
dest: 'NzbDrone.Backbone/templates.js'
|
||||
},
|
||||
},
|
||||
|
||||
watch:{
|
||||
bootstrap:{
|
||||
files: 'NzbDrone.Backbone/Content/Bootstrap/*.less',
|
||||
tasks: ['less:bootstrap']
|
||||
},
|
||||
handlebars:{
|
||||
files: '<%= handlebars.files.src %>',
|
||||
tasks: ['handlebars']
|
||||
}
|
||||
}});
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
// Load the plugin that provides the "uglify" task.
|
||||
grunt.loadNpmTasks('grunt-contrib-uglify');
|
||||
grunt.loadNpmTasks('grunt-contrib-handlebars');
|
||||
grunt.loadNpmTasks('grunt-contrib-less');
|
||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||
grunt.loadNpmTasks('grunt-contrib-concat');
|
||||
|
||||
// Default task(s).
|
||||
grunt.registerTask('default', ['uglify']);
|
||||
grunt.registerTask('default', ['watch']);
|
||||
|
||||
};
|
|
@ -17,6 +17,9 @@
|
|||
"dependencies": {
|
||||
"grunt": "*",
|
||||
"grunt-contrib-uglify": "*",
|
||||
"grunt-contrib-handlebars": "*"
|
||||
"grunt-contrib-handlebars": "*",
|
||||
"grunt-contrib-watch": "~0.3.1",
|
||||
"grunt-contrib-less": "~0.5.0",
|
||||
"grunt-contrib-concat": "~0.1.3"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue