-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjake.yml
58 lines (53 loc) · 1.12 KB
/
jake.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
source_directory: javascript
build_directory: build
builds:
src:
packer: false
suffix: false
min:
shrink_vars: true
private: true
source_map: src
packages:
core:
- faye
- util/class
- util/namespace
- error
- mixins/deferrable
- mixins/publisher
- mixins/timeouts
- mixins/logging
- protocol/grammar
- protocol/extensible
- protocol/channel
- protocol/publication
- protocol/subscription
- protocol/client
- transport/transport
node/faye-node:
extends: core
files:
- util/set
- engines/proxy
- engines/connection
- engines/memory
- protocol/server
- protocol/socket
- transport/node_local
- transport/web_socket
- transport/node_http
- adapters/node_adapter
- adapters/static_server
browser/faye-browser:
extends: core
files:
- util/browser/event
- util/browser/uri
- util/browser/json
- transport/web_socket
- transport/event_source
- transport/xhr
- transport/cors
- transport/jsonp