Skip to content

Commit

Permalink
cake build now invokes "build:example".
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemorton committed Jan 13, 2012
1 parent ef3633e commit 1d94d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cakefile
Expand Up @@ -57,12 +57,12 @@ task 'build', 'Build Uniform', ->
fs.writeFileSync "#{dist}/uniform-#{version}.min.js", header + '\n' + code
fs.writeFileSync "#{eg}/js/uniform.min.js", header + '\n' + code

invoke 'build:example'

task 'clean', 'Delete distribution folder', ->
exec "rm -rf #{dist}"

task 'build:example', 'Build example', ->
invoke 'build'
console.log 'Building example...'
exec "coffee -c example/todo.coffee", ->
console.log ' done.'

0 comments on commit 1d94d17

Please sign in to comment.