Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed CoffeeScript from runtime dependencies.
  • Loading branch information
assaf committed Dec 23, 2010
1 parent 8f28067 commit 39a12a8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
Changes
=======

## Version 0.7.1 2010-12-22

Removed CoffeeScript from runtime dependency list.


## Version 0.7.0 2010-12-22

Added `querySelector` and `querySelectorAll` based on the [DOM Selector
Expand Down
10 changes: 5 additions & 5 deletions Cakefile
@@ -1,7 +1,7 @@
fs = require("fs")
path = require("path")
{spawn, exec} = require("child_process")
sys = require("sys")
stdout = process.stdout

# ANSI Terminal Colors.
bold = "\033[0;1m"
Expand All @@ -16,7 +16,7 @@ log = (message, color, explanation) ->
# Handle error, do nothing if null
onerror = (err)->
if err
sys.puts "#{red}#{err.stack}#{reset}"
process.stdout.write "#{red}#{err.stack}#{reset}\n"
process.stdout.on "drain", -> process.exit -1


Expand Down Expand Up @@ -47,7 +47,7 @@ task "build", "Compile CoffeeScript to JavaScript", -> build onerror

task "watch", "Continously compile CoffeeScript to JavaScript", ->
cmd = spawn("coffee", ["-cw", "-o", "lib", "src"])
cmd.stdout.on "data", (data)-> sys.print green + data + reset
cmd.stdout.on "data", (data)-> process.stdout.write green + data + reset
cmd.on "error", onerror


Expand All @@ -60,7 +60,7 @@ task "clean", "Remove temporary files and such", ->
runTests = (callback)->
log "Running test suite ...", green
exec "vows --spec", (err, stdout)->
sys.puts stdout
process.stdout.write stdout
callback err
task "test", "Run all tests", -> runTests onerror

Expand Down Expand Up @@ -95,7 +95,7 @@ documentPages = (callback)->
onerror err
toHTML "CHANGELOG.md", (err)->
onerror err
sys.puts ""
process.stdout.write "\n"
exec "cp -f doc/*.css html/", callback

documentSource = (callback)->
Expand Down
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -23,7 +23,6 @@
"node": "*"
},
"dependencies": {
"coffee-script": ">= 0.9.6",
"htmlparser": ">= 1.7.3",
"jsdom": ">= 0.1.21"
},
Expand Down

0 comments on commit 39a12a8

Please sign in to comment.