Skip to content

Commit b5a9dfc

Browse files
author
David Tai
committed
update build system
1 parent 6d123c4 commit b5a9dfc

File tree

4 files changed

+3787
-66
lines changed

4 files changed

+3787
-66
lines changed

Sakefile

+23-2
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,37 @@ use 'sake-outdated'
33
use 'sake-publish'
44
use 'sake-version'
55

6+
option '-b', '--browser [browser]', 'browser to use for tests'
7+
option '-g', '--grep [filter]', 'test filter'
8+
option '-t', '--test [test]', 'specify test to run'
9+
option '-v', '--verbose', 'enable verbose test logging'
10+
611
task 'clean', 'clean project', ->
712
exec 'rm -rf lib'
813

9-
task 'build', 'build js', () ->
14+
task 'build', 'build js', ['build:static'], ->
1015
bundle.write
1116
entry: 'src/index.coffee'
1217
compilers:
1318
coffee:
1419
version: 1
15-
yield exec 'cp lib/el.js el.js'
20+
21+
task 'build:min', 'build js for production', ['build'], ->
22+
yield bundle.write
23+
entry: 'src/index.coffee'
24+
format: 'web'
25+
external: false
26+
sourceMap: false
27+
browser: false
28+
compilers:
29+
coffee:
30+
version: 1
31+
yield exec 'uglifyjs el.js -o el.min.js'
32+
33+
task 'build:static', 'build static assets', ->
34+
exec '''
35+
bebop compile'
36+
'''
1637

1738
task 'test', 'Run tests', ['build', 'static-server'], (opts) ->
1839
bail = opts.bail ? true

bebop.coffee

+21-24
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,39 @@
1+
exec = require 'executive'
12
fs = require 'fs'
23
path = require 'path'
34

4-
requisite = 'node_modules/.bin/requisite -g'
5+
debounce = (fn, wait = 500) ->
6+
last = (new Date) - wait
7+
->
8+
now = new Date
59

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)
1612

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
1726

1827
module.exports =
1928
port: 4242
2029

2130
cwd: process.cwd()
2231

2332
exclude: [
24-
/css/
2533
/lib/
2634
/node_modules/
2735
/vendor/
2836
]
2937

3038
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

Comments
 (0)