c0c4cd9272
To conform with how many other projects name their directories.
54 lines
1.8 KiB
JavaScript
54 lines
1.8 KiB
JavaScript
module.exports = function(grunt) {
|
|
grunt.initConfig({
|
|
jst: {
|
|
compile: {
|
|
options: {
|
|
namespace: 'templates',
|
|
templateSettings: {
|
|
evaluate : /\{\[([\s\S]+?)\]\}/g,
|
|
interpolate : /\{\{([\s\S]+?)\}\}/g
|
|
},
|
|
processName: function (filepath) {
|
|
// E.g. src/templates/trimmed_chat.html
|
|
return filepath.match(/src\/templates\/([a-z_]+)\.html/)[1];
|
|
|
|
}
|
|
},
|
|
files: {
|
|
"dist/templates.js": ["src/templates/*.html"]
|
|
},
|
|
}
|
|
},
|
|
cssmin: {
|
|
options: {
|
|
banner: "/*"+
|
|
"* Converse.js (Web-based XMPP instant messaging client) \n"+
|
|
"* http://conversejs.org \n"+
|
|
"* Copyright (c) 2012, Jan-Carel Brand <jc@opkode.com> \n"+
|
|
"* Dual licensed under the MIT and GPL Licenses \n"+
|
|
"*/"
|
|
},
|
|
minify: {
|
|
dest: 'css/converse.min.css',
|
|
src: ['css/converse.css']
|
|
}
|
|
},
|
|
json: {
|
|
main: {
|
|
options: {
|
|
namespace: 'locales',
|
|
includePath: true,
|
|
processName: function(filename) {
|
|
return filename.toLowerCase().match(/^locale\/(.*)\/lc_messages/)[1];
|
|
}
|
|
},
|
|
src: ['locale/**/LC_MESSAGES/*.json'],
|
|
dest: 'dist/locales.js'
|
|
}
|
|
}
|
|
});
|
|
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
|
grunt.loadNpmTasks('grunt-contrib-jst');
|
|
grunt.loadNpmTasks('grunt-json');
|
|
};
|