-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrequirejs.conf.js
More file actions
105 lines (105 loc) · 2.55 KB
/
Copy pathrequirejs.conf.js
File metadata and controls
105 lines (105 loc) · 2.55 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
require.config({
baseUrl: '/',
paths: {
jquery: 'lib/jquery/jquery',
text: 'lib/requirejs-text/text',
base64: 'lib/base64/base64.min',
hogan: 'lib/hogan/web/builds/2.0.0/hogan-2.0.0.amd',
hgn: 'lib/requirejs-hogan-plugin/hgn',
json: 'lib/requirejs-plugins/src/json',
jasmine: 'lib/jasmine/lib/jasmine-core/jasmine',
'jasmine-html': 'lib/jasmine/lib/jasmine-core/jasmine-html',
'jasmine-jquery': 'lib/jasmine-jquery/lib/jasmine-jquery',
inherits: 'lib/inherits/inherits',
observer: 'lib/observer/src/observer',
'event-emitter': 'lib/event-emitter/src/event-emitter',
'debug': 'lib/debug/debug'
},
packages: [{
name: "thread",
location: "src"
},{
name: "streamhub-sdk",
location: "lib/streamhub-sdk/src"
},{
name: "streamhub-sdk-tests",
location: "lib/streamhub-sdk/tests"
},{
name: "streamhub-sdk/auth",
location: 'lib/streamhub-sdk/src/auth'
},{
name: "streamhub-sdk/collection",
location: 'lib/streamhub-sdk/src/collection'
},{
name: "streamhub-sdk/content",
location: 'lib/streamhub-sdk/src/content'
},{
name: "streamhub-sdk/modal",
location: "lib/streamhub-sdk/src/modal"
},{
name: "streamhub-editor",
location: "lib/streamhub-editor/src/javascript",
main: "editor"
},{
name: 'streamhub-editor/templates',
location: 'lib/streamhub-editor/src/templates'
},{
name: "stream",
location: "lib/stream/src"
},{
name: "view",
location: "lib/view/src",
main: "view"
},{
name: "auth",
location: "lib/auth/src"
},{
name: "livefyre-auth",
location: "lib/livefyre-auth/src"
},{
name: 'livefyre-bootstrap',
location: 'lib/livefyre-bootstrap/src'
},{
name: 'streamhub-share',
location: 'lib/streamhub-share/src',
main: 'share-button.js'
},{
name: 'streamhub-ui',
location: 'lib/streamhub-ui/src'
},{
name: "css",
location: "lib/require-css",
main: "css"
},{
name: "less",
location: "lib/require-less",
main: "less"
}],
shim: {
jquery: {
exports: '$'
},
jasmine: {
exports: 'jasmine'
},
'jasmine-html': {
deps: ['jasmine'],
exports: 'jasmine'
},
'jasmine-jquery': {
deps: ['jquery']
}
},
css: {
clearFileEachBuild: 'dist/thread.min.css',
transformEach: []
},
less: {
browserLoad: 'dist/thread.min',
paths: ['lib'],
relativeUrls: true,
modifyVars: {
'@icon-font-path': "\"http://cdn.livefyre.com/libs/livefyre-bootstrap/v1.1.0/fonts/\""
}
}
});