grunt-contrib-jst/Gruntfile.js

82 lines
1.9 KiB
JavaScript
Raw Normal View History

2012-09-11 02:12:23 +08:00
/*
* grunt-contrib-jst
* http://gruntjs.com/
*
* Copyright (c) 2012 Tim Branyen, contributors
* Licensed under the MIT license.
*/
2012-10-19 07:02:45 +08:00
'use strict';
2012-09-11 02:12:23 +08:00
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
2012-10-19 07:02:45 +08:00
all: [
'Gruntfile.js',
'tasks/*.js',
'<%= nodeunit.tests %>'
],
2012-09-11 02:12:23 +08:00
options: {
2012-10-19 07:02:45 +08:00
jshintrc: '.jshintrc'
2012-09-11 02:12:23 +08:00
}
},
// Before generating any new files, remove any previously-created files.
clean: {
test: ['tmp']
},
// Configuration to be run (and then tested).
jst: {
compile: {
files: {
"tmp/jst.js": ["test/fixtures/template.html"]
2012-09-11 02:12:23 +08:00
}
2012-09-12 23:34:53 +08:00
},
uglyfile: {
files: {
"tmp/uglyfile.js": ["test/fixtures/*bad-filename*"]
}
},
ns_nested: {
options: {
namespace: "MyApp.JST.Main"
},
files: {
"tmp/ns_nested.js": ["test/fixtures/template.html"]
}
},
ns_nested_this: {
options: {
namespace: "this.MyApp.JST.Main"
},
files: {
"tmp/ns_nested_this.js": ["test/fixtures/template.html"]
2012-09-12 23:34:53 +08:00
}
2012-09-11 02:12:23 +08:00
}
},
// Unit tests.
nodeunit: {
tasks: ['test/*_test.js']
}
});
// Actually load this plugin's task(s).
grunt.loadTasks('tasks');
2012-10-19 07:02:45 +08:00
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-internal');
2012-09-11 02:12:23 +08:00
// Whenever the "test" task is run, first clean the "tmp" dir, then run this
// plugin's task(s), then test the result.
2012-10-19 07:02:45 +08:00
grunt.registerTask('test', ['nodeunit']);
2012-09-11 02:12:23 +08:00
// By default, lint and run all tests.
2012-10-19 07:02:45 +08:00
grunt.registerTask('default', ['jst', 'test', 'build-contrib']);
2012-09-11 02:12:23 +08:00
};