added precompiling of handlebar templates to grunt.

pull/2/head
kay.one 11 years ago
parent fb47bac883
commit 9ddfe34acc

@ -4,31 +4,59 @@ module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
files: {
expand: true, // Enable dynamic expansion.
cwd: 'NzbDrone.Backbone/', // Src matches are relative to this path.
src: ['**/*.js'], // Actual pattern(s) to match.
dest: 'build/', // Destination path prefix.
ext: '.min.js' // Dest filepaths will have this extension.
files: {
expand: true, // Enable dynamic expansion.
cwd: 'NzbDrone.Backbone/', // Src matches are relative to this path.
src: ['**/*.js'], // Actual pattern(s) to match.
dest: 'build/', // Destination path prefix.
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…
Cancel
Save