Skip to content

Commit 72eb598

Browse files
committed
Merge pull request PavelVanecek#1 from AusIV/master
Update to Angular 1.0.6 and Karma
2 parents a6453ad + 9c16e2b commit 72eb598

32 files changed

+2448
-306
lines changed

Cakefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{exec} = require 'child_process'
2+
3+
4+
task 'compile', 'Compiles coffee in app/coffee/ to js in app/js/', ->
5+
compile()
6+
7+
compile = (callback) ->
8+
exec 'coffee -o app/js/ -c app/coffee/', (err, stdout, stderr) ->
9+
throw err if err
10+
console.log "Compiled coffee files"
11+
callback?()
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)