added precompiling of handlebar templates to grunt.

pull/23/head
kay.one 12 years ago
parent fb47bac883
commit 9ddfe34acc

@ -4,31 +4,59 @@ module.exports = function(grunt) {
grunt.initConfig({ grunt.initConfig({
pkg: grunt.file.readJSON('package.json'), pkg: grunt.file.readJSON('package.json'),
uglify: { uglify: {
files: { files: {
expand: true, // Enable dynamic expansion. expand: true, // Enable dynamic expansion.
cwd: 'NzbDrone.Backbone/', // Src matches are relative to this path. cwd: 'NzbDrone.Backbone/', // Src matches are relative to this path.
src: ['**/*.js'], // Actual pattern(s) to match. src: ['**/*.js'], // Actual pattern(s) to match.
dest: 'build/', // Destination path prefix. dest: 'build/', // Destination path prefix.
ext: '.min.js' // Dest filepaths will have this extension. ext: '.min.js' // Dest filepaths will have this extension.
}
},
less:{
bootstrap:{
files: {
"NzbDrone.Backbone/Content/bootstrap.css": "NzbDrone.Backbone/Content/Bootstrap/bootstrap.less"
}
} }
}, },
handlebars: { handlebars: {
options: { options: {
namespace: "NzbDrone.Templates" namespace: "NzbDrone.Templates",
wrapped: false,
processName: function(fileName){
return fileName
.replace('NzbDrone.Backbone/','')
.replace('.html','');
}
}, },
files: { files: {
expand: true, // Enable dynamic expansion. src: ['NzbDrone.Backbone/**/*emplate.html'],
cwd: 'NzbDrone.Backbone/', // Src matches are relative to this path. dest: 'NzbDrone.Backbone/templates.js'
src: ['**/*Template.html'], },
ext: '.hbs' // Actual pattern(s) to match. },
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. // Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-handlebars'); grunt.loadNpmTasks('grunt-contrib-handlebars');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
// Default task(s). // Default task(s).
grunt.registerTask('default', ['uglify']); grunt.registerTask('default', ['watch']);
}; };

@ -17,6 +17,9 @@
"dependencies": { "dependencies": {
"grunt": "*", "grunt": "*",
"grunt-contrib-uglify": "*", "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…
Cancel
Save