forked from bergie/hallo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCakefile
41 lines (35 loc) · 1.11 KB
/
Cakefile
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
fs = require 'fs'
{exec, spawn} = require 'child_process'
{series} = require 'async'
sh = (command) -> (k) ->
console.log "Executing #{command}"
exec command, (err, sout, serr) ->
console.log err if err
console.log sout if sout
console.log serr if serr
do k
task 'doc', 'generate documentation for *.coffee files', ->
series [
(sh "docco-husky src")
]
task 'doc_copy', 'copy documentation to gh-pages branch', ->
series [
(sh "docco-husky src")
(sh "mv docs docs_tmp")
(sh "git checkout gh-pages")
(sh "mv docs_tmp/* docs")
(sh "git add docs/*")
(sh "git commit -m 'updating documentation from master'")
(sh "git checkout master")
]
task 'build', 'generate unified JavaScript file for whole Hallo', ->
series [
(sh "coffee -o examples -j hallo.js -c `find src -type f -name '*.coffee'`")
]
task 'min', 'minify the generated JavaScript file', ->
series [
(sh "coffee -o examples -j hallo.js -c `find src -type f -name '*.coffee'`")
(sh "uglifyjs examples/hallo.js > examples/hallo-min.js")
]
task 'bam', 'build and minify Hallo', ->
invoke 'min'