forked from baconjs/bacon.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.coffee
62 lines (52 loc) · 1.52 KB
/
Gruntfile.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module.exports = (grunt) ->
grunt.initConfig
clean:
dist: ['dist/']
coffee: ['dist/*.coffee']
coffee:
compile:
expand: true
files: [
'dist/Bacon.js': 'dist/Bacon.coffee'
'dist/Bacon.min.js': 'dist/Bacon.noAssert.coffee'
]
coffeelint:
bacon: [ 'src/Bacon.coffee' ]
options:
configFile: 'coffeelint.json'
uglify:
dist:
files:
'dist/Bacon.min.js': 'dist/Bacon.min.js'
copy:
dist:
expand:true
files:[
'dist/Bacon.coffee': 'src/Bacon.coffee'
]
replace:
asserts:
dest: 'dist/Bacon.noAssert.coffee'
src: ['dist/Bacon.coffee']
replacements: [
from: /assert.*/g
to: ''
]
watch:
coffee:
files: 'src/*.coffee'
tasks: 'build'
grunt.loadNpmTasks 'grunt-contrib-coffee'
grunt.loadNpmTasks 'grunt-contrib-clean'
grunt.loadNpmTasks 'grunt-contrib-copy'
grunt.loadNpmTasks 'grunt-contrib-uglify'
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.loadNpmTasks 'grunt-text-replace'
grunt.loadNpmTasks 'grunt-coffeelint';
grunt.registerTask 'build', ['clean:dist', 'copy', 'replace:asserts', 'coffee', 'uglify', 'clean:coffee']
grunt.registerTask 'default', ['build']
grunt.registerTask 'readme', 'Generate README.md', ->
fs = require 'fs'
readmedoc = require './readme-src.coffee'
readmegen = require './readme/readme.coffee'
fs.writeFileSync('README.md', readmegen readmedoc)