UNPKG

456 Btext/coffeescriptView Raw
1
2###
3 This is the minimal bumble-build Gruntfile. You can tweek what BumbleBuild
4 returns below to customize
5###
6BumbleBuild = require('bumble-build')
7
8module.exports = (grunt) ->
9 BumbleBuild.gruntConfig(grunt)
10
11 shellConfig = grunt.config.get('shell')
12 shellConfig.distrib =
13 command: 'coffee -o lib/ src/'
14
15 grunt.config.set('shell', shellConfig)
16
17 # we don't need no stinking webpack
18 grunt.registerTask 'distrib', ['shell:distrib']