Jeremy Ashkenas
a8d4c3a567
sprinkling toString() throughout, for Node.js 0.1.95 compatibility.
2010-05-15 00:34:14 -04:00
Jeremy Ashkenas
e17567866a
Merge branch 'master' of git://github.com/Tesco/coffee-script
2010-04-26 23:31:18 -04:00
gfxmonk
175ebb3cd8
fail with appropriate error status if child process fails
2010-04-26 16:08:19 +10:00
Tim Jones
8950c3c4c8
Fixing invalid pattern matching and object creation.
2010-04-26 15:54:47 +12:00
Jeremy Ashkenas
2d1abd099d
rewriting the Lexer, CommandLine, Nodes, and Rewriter to take advantage of the new DRY object pattern matching.
2010-04-25 22:29:43 -04:00
Jeremy Ashkenas
212ad45be4
merging gfxmonk's removed error event fix.
2010-04-24 22:13:13 -04:00
gfxmonk
e9b37c7578
replaced nonexistant error event callback with a combination of stderr and exit events
2010-04-25 11:24:06 +10:00
Jeremy Ashkenas
fb4d4a609b
making bin/cake install add CoffeeScript as a Node.js library, and creating an index.js file for the top-level inclusion.
2010-04-20 20:20:38 -04:00
Dr Nic Williams
ef67561fb3
Using anonymous callback for 'exit' event when running tests
2010-04-11 19:05:49 +10:00
Jeremy Ashkenas
8317960f81
Battery of patches for compatibility with Node v0.1.90
2010-04-10 18:05:35 -04:00
Jeremy Ashkenas
f86fca2739
merged tanob's fix for installing outside of /usr/local without a /bin
2010-03-31 21:30:14 -04:00
Adriano Bonat
2172878f21
When installing in different prefixes, prefix + '/bin' may not exist.
2010-03-31 09:38:05 -03:00
Jeremy Ashkenas
80230414a2
merging in gfxmonk's major refactor to the way that returns are pushed down into the interior of expressions
2010-03-21 11:28:05 -04:00
Jeremy Ashkenas
ce7c0d176b
briefer test runner output
2010-03-21 10:18:23 -04:00
gfxmonk
8553a89af2
improve feedback when running the test task
...
- run synchronously, to ensure ordering is consistent
- big red error message (and exit status)
- don't bail early
- don't bother printing a stack trace (it's useless
until we can get line numbers in eval'd code)
2010-03-21 22:21:47 +11:00
Jeremy Ashkenas
391135b1a5
fixing the relative path to 'grammar'
2010-03-16 19:36:08 -04:00
Jeremy Ashkenas
25438be207
new docs for underscore
2010-03-16 19:13:13 -04:00
Jeremy Ashkenas
e3021909c2
comments and tests
2010-03-16 06:54:49 -04:00
Jeremy Ashkenas
0b3054a348
merging in matehat's registerExtension patch for direct-requires of CoffeeScript.
2010-03-15 23:03:30 -07:00
Jeremy Ashkenas
02f4cb75dd
removing deprecated references to process.mixin in favor of helpers.extend for Node 0.1.32
2010-03-15 22:53:25 -07:00
Jeremy Ashkenas
119b80d449
removing fiddling with require.paths from CoffeeScript
2010-03-15 20:39:46 -07:00
Jeremy Ashkenas
a27f146338
fixing 'cake test' to print out the name of the file with the failing test.
2010-03-14 09:33:41 -07:00
Jeremy Ashkenas
74995358cd
updating the Cakefile for the new tmbundle location.
2010-03-14 08:59:55 -07:00
matehat
709f17c278
Added an extension on node's 'require' module so it can import .coffee module and added some tests to make sure it works.
2010-03-12 14:22:01 -05:00
Jeremy Ashkenas
1b4edd0e37
scrubbing all carriage returns from CoffeeScript source before compiling for the benefit of Windows users.
2010-03-08 23:07:26 -05:00
Jeremy Ashkenas
3396dce2bb
waypoint -- going to try to clean up regex_token
2010-03-08 20:57:28 -05:00
Jeremy Ashkenas
3291bd2a4a
removing the 'supress' option from the lexer, just look at the slash.
2010-03-08 20:07:19 -05:00
Jeremy Ashkenas
bcf7b3f95b
CoffeeScript 0.5.5, with string interpolation and internal documentation
2010-03-08 06:34:07 -05:00
Jeremy Ashkenas
1cf0326183
unifying the CoffeeScript.compile and CoffeeScript.run apis to be the same -- source code and options hash.
2010-03-07 22:17:45 -05:00
Jeremy Ashkenas
06b50ecb98
unifying all of the server-side evaluation under CoffeeScript.run -- this means that __filename and __dirname and relative requires should work from all angles under Node.js
2010-03-07 21:49:08 -05:00
Jeremy Ashkenas
a3e1693a75
waypoint -- docc'd down to the SplatNode
2010-03-07 19:07:37 -05:00
Jeremy Ashkenas
202ebf06ff
documentation for command.coffee
2010-03-07 00:28:58 -05:00
Jeremy Ashkenas
893fb98522
moving command_line.coffee -> command.coffee
2010-03-06 22:18:15 -05:00
Jeremy Ashkenas
e267226438
commenting coffee-script.coffee for documentation
2010-03-06 20:30:40 -05:00
Jeremy Ashkenas
5b3ef78101
adding a doc:source Cake task to document CoffeeScript's internals
2010-03-06 19:02:31 -05:00
Jeremy Ashkenas
70cb195e6f
rebuilding extras/coffee-script.js
2010-03-02 16:52:55 -05:00
Jeremy Ashkenas
2969e156c7
fixing require paths in the Cakefile so that build:jison will work, even if you don't have it installed.
2010-02-28 10:37:12 -05:00
Jeremy Ashkenas
f4cd0bdf29
making --run the default option for consistency. If you want to save the file, use -c or --compile.
2010-02-27 00:38:04 -05:00
Jeremy Ashkenas
93f644fae2
finishing the second half of prefix installs. Using readLink to refer to the CoffeeScript installation reliably.
2010-02-26 19:49:12 -05:00
Jeremy Ashkenas
5c7526a741
moving some of the fs methods over to sync methods, where it's alright and where it makes things clearer
2010-02-25 21:53:42 -05:00
Jeremy Ashkenas
17ea48c543
first draft of options for Cakefiles, using optparse.coffee, as well as a cake install task that takes --prefix. Still need to fix the lib/bin scripts
2010-02-25 21:43:42 -05:00
Jeremy Ashkenas
c1427d6558
adding a minified combined coffee-script.js. Include it on the page, after any text/coffeescript tags, and call CoffeeScript.activate(); to run it
2010-02-24 19:57:29 -05:00
Jeremy Ashkenas
4817b96bac
fixing the build:ultraviolet task in the Cakefile
2010-02-22 09:09:35 -05:00
Jeremy Ashkenas
5d541232ef
adding /usr/local/lib hardcoded versions of coffee and cake for the install script
2010-02-21 19:19:58 -05:00
Jeremy Ashkenas
1f2c8df5fa
updating to latest Node (0.1.3) API -- callbacks, not promises
2010-02-21 14:06:01 -05:00
Jeremy Ashkenas
ff25361896
removing the build:parser -> build dependency in the Cakefile -- the asynchrony was breaking it anyway
2010-02-21 11:40:52 -05:00
Jeremy Ashkenas
2d3f6b80c1
Revert "fixing api changes (no more promises) for node v.0.1.29"
...
This reverts commit 9503ea3040 .
2010-02-20 18:12:09 -05:00
alunny
9503ea3040
fixing api changes (no more promises) for node v.0.1.29
2010-02-20 14:45:16 -08:00
Jeremy Ashkenas
c39415da44
using the new fs.writeFile API instead of fs.open -- much, much nicer
2010-02-19 18:27:50 -05:00
Jeremy Ashkenas
fbfa12c733
moving 'throw' to a slightly higher level of precedence
2010-02-17 19:35:34 -05:00