wiki-plugin-bikeshare
Version:
Federated Wiki - Bikeshare Plugin
40 lines (33 loc) • 762 B
JavaScript
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.initConfig({
coffee: {
client: {
expand: true,
options: {
sourceMap: true
},
src: ['client/*.coffee', 'test/*.coffee'],
ext: '.js'
}
},
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['test/**/*.js']
}
},
watch: {
all: {
files: ['client/*.coffee', 'test/*.coffee'],
tasks: ['coffee','mochaTest']
}
}
});
grunt.registerTask('build', ['coffee', 'mochaTest']);
grunt.registerTask('default', ['build']);
};