UNPKG

750 BMarkdownView Raw
1coffee-project
2==============
3
4A gulp based project for coffee-script, copied from the awesome [id-project](https://github.com/Industrial/id-project) by [Industrial](https://github.com/Industrial)
5
6## Installation
7
8```bash
9$ npm install --save-dev coffee-project gulp coffee-script
10```
11
12## Usage
13
141. Put a file named `gulpfile.coffee` in your project directory containing:
15
16```coffee
17(require "coffee-project")
18 documentation: enabled: false # still has a bug
19 livereload: enabled: true
20 browserify: enabled: true
21 clean: enabled: true
22 copy: enabled: true
23 less: enabled: true
24 watch: enabled: true
25 forever: enabled: true
26 tests: enabled: true
27```
28
292. Run gulp:
30
31 ```bash
32 $ gulp
33 ```