-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathconfig.js
More file actions
87 lines (78 loc) · 4.3 KB
/
config.js
File metadata and controls
87 lines (78 loc) · 4.3 KB
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
require.config({
baseUrl: ".",
include: "xabber",
out: "dist/xabber.js",
paths: {
// external libs
"backbone": "node_modules/backbone/backbone",
"underscore": "node_modules/underscore/underscore",
"jquery": "node_modules/jquery/dist/jquery",
"moment": "node_modules/moment/min/moment-with-locales.min",
"moment-locales": "node_modules/moment/min/locales.min",
"perfectScrollbarJQuery": "node_modules/perfect-scrollbar/dist/js/perfect-scrollbar.jquery",
"strophe": "node_modules/strophe.js/dist/strophe.esm",
"strophe.disco": "node_modules/strophejs-plugins/disco/strophe.disco",
"strophe.ping": "node_modules/strophejs-plugins/ping/strophe.ping",
"strophe.rsm": "node_modules/strophejs-plugins/rsm/strophe.rsm",
"text": "node_modules/requirejs-text/text",
"wavesurfer": "node_modules/wavesurfer/dist/wavesurfer",
"slug": "node_modules/slug/slug",
"sha256": "node_modules/js-sha256/src/sha256",
"magnific-popup": "node_modules/magnific-popup/dist/jquery.magnific-popup",
"i18next": "node_modules/i18next/i18next.min",
// modified libs and plugins
"Plyr": "src/lib/plyr",
"backbone.localsync": "src/lib/backbone.localsync",
"hammerjs": "src/lib/hammer.min",
"materialize": "src/lib/materialize",
"strophe.caps": "src/lib/strophe.caps",
"strophe.pubsub": "src/lib/strophe.pubsub",
"sha1_hasher": "src/lib/sha1.min",
"omemo": "src/lib/omemo",
"strophe.sha1": "src/lib/strophe-sha1",
"strophe.stream-management":"src/lib/strophe.stream-management",
"qrcode": "src/lib/VanillaQR.min",
"i18next-post": "src/lib/i18nextSprintfPostProcessor.min",
// Xabber sources
"xabber-version": "version",
"xabber-dependencies": "src/dependencies",
"xabber-templates": "src/templates",
"xabber-constants": "src/constants",
"xabber-utils": "src/utils/utils",
"xabber-textarea-utils": "src/utils/textarea",
"xabber-emoji-utils": "src/utils/emoji",
"xabber-image-utils": "src/utils/images",
"xabber-modal-utils": "src/utils/modals",
"xabber-environment": "src/environment",
"xabber-core": "src/core",
"xabber-views": "src/views",
"xabber-api-service": "src/api-service",
"xabber-strophe": "src/strophe",
"xabber-accounts": "src/accounts",
"xabber-discovery": "src/discovery",
"xabber-vcard": "src/vcard",
"xabber-contacts": "src/contacts",
"xabber-chats": "src/chats",
"xabber-searching": "src/searching",
"xabber-mentions": "src/mentions",
"xabber-ui": "src/ui",
"xabber-omemo": "src/omemo",
"xabber-trust": "src/trust",
"xabber-translations-info": "translations/translation_progress",
// xep modules
"xabber-xep0280": "src/xep_modules/xep0280",
"xabber-xep-rewrite": "src/xep_modules/xep-rewrite",
"xabber-xep-delivery": "src/xep_modules/xep-delivery",
"xabber-xep-devices": "src/xep_modules/xep-devices",
"xabber-xep0060": "src/xep_modules/xep0060",
"xabber-xep0224": "src/xep_modules/xep0224",
"xabber-xep-groups": "src/xep_modules/xep-groups",
"xabber-xep-forwards": "src/xep_modules/xep-forwards",
"xabber-xep-favorites": "src/xep_modules/xep-favorites",
"xabber-xep0466": "src/xep_modules/xep0466",
"xabber-xep0353": "src/xep_modules/xep0353",
"xabber-xep0333": "src/xep_modules/xep0333",
// main file
"xabber": "src/xabber"
}
});