Skip to content

Commit

Permalink
Only cake webclient is needed; updated webclient
Browse files Browse the repository at this point in the history
  • Loading branch information
wmertens committed Aug 14, 2012
1 parent 7adf7ec commit 23ead4a
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 12 deletions.
1 change: 1 addition & 0 deletions Cakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ task 'test', 'Run all tests', ->
exec 'nodeunit tests.coffee', (err, stdout, stderr) ->
throw err if err

# This is only needed to be able to refer to the line numbers of crashes
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) ->
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@
"scripts": {
"build": "cake build",
"test": "nodeunit tests.coffee",
"postinstall": "cake build",
"prepublish": "cake build"
"prepublish": "cake webclient"
},
"licenses": [{
"type": "BSD",
Expand Down
Loading

1 comment on commit 23ead4a

@wmertens
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well this broke the tests :-) Turns out this is because the sockjs pull didn't include an updated webclient (mea culpa). Trying to fix.

Please sign in to comment.