@slack/client
Version:
A library for creating a Slack client
55 lines (52 loc) • 1.19 kB
JavaScript
// Generated by CoffeeScript 1.10.0
(function() {
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-release');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.initConfig({
watch: {
coffee: {
files: ['**/*.coffee', '!node_modules'],
tasks: ['shell:test']
}
},
shell: {
test: {
command: 'npm test',
options: {
stdout: true,
stderr: true
}
}
},
coffee: {
options: {
bare: true
},
index: {
files: {
'index.js': 'index.coffee'
}
},
examples: {
expand: true,
cwd: 'examples',
src: ['*.coffee'],
dest: 'examples',
ext: '.js'
},
classes: {
expand: true,
cwd: 'src',
src: ['*.coffee'],
dest: 'src',
ext: '.js'
}
}
});
return grunt.registerTask('prepublish', ['coffee']);
};
}).call(this);
//# sourceMappingURL=Gruntfile.js.map