-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathdeps.js
87 lines (81 loc) · 1.61 KB
/
deps.js
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
var config = require('./config');
var minJs = config.DEBUG ? '.js' : '.min.js';
exports.VENDOR_DEPS = [
'lib/es5-shim' + minJs,
'lib/underscore' + minJs,
'lib/backbone' + minJs,
'lib/oninput' + minJs,
'lib/jquery.cookie' + minJs,
];
exports.CLIENT_DEPS = [
'common.js',
'client/init.js',
'client/memory.js',
'client/models.js',
'client/extract.js',
'client/options.js',
'client/scroll.js',
'client/client.js',
'client/posting.js',
'client/menu.js',
'client/conn.js',
'client/time.js',
'client/notify.js',
'client/drop.js',
'client/hide.js',
'client/hover.js',
'client/amusement.js',
'client/embed.js',
'client/gravitas.js',
'curfew/client.js',
'report/client.js',
];
exports.SERVER_DEPS = [
'admin/common.js',
'admin/index.js',
'admin/panel.js',
'common.js',
'config.js',
'db.js',
'deps.js',
'etc.js',
'make_client.js',
'pipeline.js',
'curfew/server.js',
'lib/underscore.js',
'lua/finish.lua',
'lua/get_thread.lua',
'imager/config.js',
'imager/daemon.js',
'imager/db.js',
'imager/index.js',
'imager/jobs.js',
'report/config.js',
'report/server.js',
'server/amusement.js',
'server/caps.js',
'server/msgcheck.js',
'server/okyaku.js',
'server/opts.js',
'server/perceptual.c',
'server/auth.js',
'server/render.js',
'server/server.js',
'server/state.js',
'server/web.js',
'tripcode/tripcode.cc',
];
// Changes to these only require a state.js reload
exports.SERVER_STATE = [
'admin/client.js',
'hot.js',
'tmpl/curfew.html',
'tmpl/filter.html',
'tmpl/index.html',
'tmpl/login.html',
'tmpl/redirect.html',
];
exports.MOD_CLIENT_DEPS = [
'admin/common.js',
'admin/client.js',
];