source: Dev/trunk/node_modules/grunt-contrib-coffee/docs/coffee-options.md @ 533

Last change on this file since 533 was 484, checked in by hendrikvanantwerpen, 11 years ago

Commit node_modules, to make checkouts and builds more deterministic.

File size: 688 bytes
Line 
1# Options
2
3## separator
4Type: `String`
5Default: linefeed
6
7Concatenated files will be joined on this string.
8
9## bare
10Type: `boolean`
11
12Compile the JavaScript without the top-level function safety wrapper.
13
14## join
15Type: `boolean`
16Default: `false`
17
18When compiling multiple .coffee files into a single .js file, concatenate first.
19
20## sourceMap
21Type: `boolean`
22Default: `false`
23
24Compile JavaScript and create a .map file linking it to the CoffeeScript source. When compiling multiple .coffee files to a single .js file, concatenation occurs as though the 'join' option is enabled. The concatenated CoffeeScript is written into the output directory, and becomes the target for source mapping.
Note: See TracBrowser for help on using the repository browser.