Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pgherveou committed Mar 2, 2013
1 parent 315e88e commit e8469fd
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ this will

- start your server script
- live recompile your files and emit a growl notification**
- auto-restart your node server when a file change inside /lib
- auto-restart your node server when a file loaded by your server script changes

You can also combine it to a tool like [liveReload] [1] to auto refresh your browser when client files are updated

Expand Down Expand Up @@ -79,6 +79,9 @@ Want to add support for other file types? New builder can easily be implemented
<tr>
<td>*.js</td><td>copy</td><td>concat dependencies and copy to the output folder</td>
</tr>
<tr>
<td>*.json</td><td>copy</td><td>validate and copy to the output folder</td>
</tr>
<tr>
<td>*.coffee</td><td>compile to js</td><td>files are compiled with bare option</td>
</tr>
Expand All @@ -93,7 +96,7 @@ Want to add support for other file types? New builder can easily be implemented
## files Dependencies

squid manage your file dependencies and only compile the necessary files.
here is how you define dependencies for each supported file format
here is how you define dependencies

<table>
<tr>
Expand Down Expand Up @@ -121,7 +124,10 @@ Here are the default options if you dont add a squid.json to your project
```js
{
"src": "src", /* source folder */
"script": "index.js", /* server script to execute */
"server": {
"script": "index.js", /* server script to execute */
env: {} , /*additional ennvironment variables to load*/
},
"out": ".", /* build folder */
"jade": { /* jade default options */
"amd": true /* wrap jade template inside a requirejs define block */
Expand Down

0 comments on commit e8469fd

Please sign in to comment.