Questions tagged [cakefile]

Cake is a simple build tool written in Coffeescript. Cakefiles specify the tasks to be performed by this tool.

The annotated source of cake.coffee can be found here.

17 questions
0
votes
1 answer

Changing directory in a CakeFile task

I tried to change the directory using a normal cd command, but it says execvp(): No such file or directory. These are the lines: fs = require 'fs' util = require 'util' {spawn} = require 'child_process' clientTest = (callback) -> d = spawn 'cd',…
prashn64
  • 657
  • 1
  • 8
  • 24
-1
votes
1 answer

fs undefined in cakefile

I'm trying to build a simple cakefile to perform build tasks for a node project I'm working on. Following this gist from github, I've managed to throw the following basic code together: CoffeeScript = require 'coffee-script' {exec} = require…
Karmic Coder
  • 17,569
  • 6
  • 32
  • 42
1
2