UNPKG

325 BJavaScriptView Raw
1module.exports = function(grunt) {
2
3 // Project configuration.
4 grunt.initConfig({
5 execute: {
6 build: {
7 src: [ 'updateBotList.js' ]
8 }
9 }
10 });
11
12 grunt.loadNpmTasks('grunt-execute');
13
14 grunt.registerTask('updateBotList', 'execute:build');
15 grunt.registerTask('default', ['updateBotList']);
16
17
18};