Skip to content

Commit

Permalink
Commit codeEditor
Browse files Browse the repository at this point in the history
  • Loading branch information
rashadrussell committed Dec 8, 2012
1 parent 2581c20 commit f7f460d
Show file tree
Hide file tree
Showing 1,572 changed files with 221,293 additions and 0 deletions.
14 changes: 14 additions & 0 deletions editor/Cakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{exec} = require 'child_process'

task 'build', 'Build the .js files', (options) ->
console.log('Compiling Coffee from src to lib')
exec "coffee --compile --bare --output lib/ src/", (err, stdout, stderr) ->
throw err if err
console.log stdout + stderr

task 'watch', 'Watch src directory and build the .js files', (options) ->
console.log('Watching Coffee in src and compiling to lib')
cp = exec "coffee --watch --bare --output lib/ src/"
cp.stdout.on "data", (data) -> console.log(data)
cp.stderr.on "data", (data) -> console.log(data)

25 changes: 25 additions & 0 deletions editor/lib/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions editor/node_modules/.bin/sharejs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions editor/node_modules/.bin/sharejs-exampleserver

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions editor/node_modules/browserchannel/.npmignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions editor/node_modules/browserchannel/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 61 additions & 0 deletions editor/node_modules/browserchannel/Makefile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

169 changes: 169 additions & 0 deletions editor/node_modules/browserchannel/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f7f460d

Please sign in to comment.