|
| 1 | +exec = require 'executive' |
1 | 2 | fs = require 'fs'
|
2 | 3 | path = require 'path'
|
3 | 4 |
|
4 |
| -requisite = 'node_modules/.bin/requisite -g' |
| 5 | +debounce = (fn, wait = 500) -> |
| 6 | + last = (new Date) - wait |
| 7 | + -> |
| 8 | + now = new Date |
5 | 9 |
|
6 |
| -files = |
7 |
| - js: |
8 |
| - in: 'src/index.coffee' |
9 |
| - out: 'el.js' |
10 |
| - exampleFormJs: |
11 |
| - in: 'examples/form/form.coffee' |
12 |
| - out: 'examples/form/form.js' |
13 |
| - exampleTableJs: |
14 |
| - in: 'examples/table/table.coffee' |
15 |
| - out: 'examples/table/table.js' |
| 10 | + # Return if we haven't waited long enough |
| 11 | + return if wait > (now - last) |
16 | 12 |
|
| 13 | + fn.apply null, arguments |
| 14 | + last = now |
| 15 | + |
| 16 | +writeFile = (dst, content) -> |
| 17 | + fs.writeFile dst, content, 'utf8', (err) -> |
| 18 | + console.error err if err? |
| 19 | + |
| 20 | +compileCoffee = (src) -> |
| 21 | + return |
| 22 | + return unless /^src|src\/index.coffee$/.test src |
| 23 | + exec 'cake build' |
| 24 | + |
| 25 | +coffeeCompiler = debounce compileCoffee |
17 | 26 |
|
18 | 27 | module.exports =
|
19 | 28 | port: 4242
|
20 | 29 |
|
21 | 30 | cwd: process.cwd()
|
22 | 31 |
|
23 | 32 | exclude: [
|
24 |
| - /css/ |
25 | 33 | /lib/
|
26 | 34 | /node_modules/
|
27 | 35 | /vendor/
|
28 | 36 | ]
|
29 | 37 |
|
30 | 38 | compilers:
|
31 |
| - coffee: (src) -> |
32 |
| - if /examples.form/.test src |
33 |
| - return "#{requisite} #{files.exampleFormJs.in} -o #{files.exampleFormJs.out}" |
34 |
| - |
35 |
| - if /examples.table/.test src |
36 |
| - return "#{requisite} #{files.exampleTableJs.in} -o #{files.exampleTableJs.out}" |
37 |
| - |
38 |
| - if /^src/.test src |
39 |
| - return "#{requisite} #{files.js.in} -o #{files.js.out}" |
40 |
| - |
41 |
| - if /src\/index.coffee/.test src |
42 |
| - return "#{requisite} #{files.js.in} -o #{files.js.out}" |
| 39 | + coffee: coffeeCompiler |
0 commit comments