Skip to content

Commit

Permalink
Adds MIT license. Updates metadata. Removes dependency on coco by com…
Browse files Browse the repository at this point in the history
…piling module prior to packaging.
  • Loading branch information
dsc committed Oct 13, 2011
1 parent 12d1767 commit cfceaed
Show file tree
Hide file tree
Showing 6 changed files with 788 additions and 25 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
settings.md
node_modules
6 changes: 2 additions & 4 deletions index.co → compiler.co
Expand Up @@ -15,8 +15,6 @@ Seq = require 'seq'





/**
* Sets up an instance of the CompilerMiddleware.
*
Expand Down Expand Up @@ -148,7 +146,8 @@ exports.DEFAULTS = DEFAULTS =
resolve_index : false # if true-y, resolve directories to this filename: false | true => 'index.html' | str
allowed_methods : [ 'GET' ] # HTTP methods compiler should process

on : null # event handlers to add: { event : handler, ... }
# TODO
# on : null # event handlers to add: { event : handler, ... }

# settings object is passed to compilers and all keys are preserved
options : # additional options can be specified per-compiler
Expand Down Expand Up @@ -388,7 +387,6 @@ class exports.Compiler extends EventEmitter
class exports.ExternalCompiler extends Compiler
id : 'external'
env : null # Process environment to use. Default: `process.env`.
# path : null # PATH for command. Default: `env.PATH` if `env`, then `process.env.PATH`.
cwd : null # Current working directory for command. Default: process.cwd().
timeout : 3.000_s # Command timeout (seconds). Default:
cmd : null # The compiler command.
Expand Down

0 comments on commit cfceaed

Please sign in to comment.