forked from destinygg/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntFile.js
211 lines (184 loc) · 6.77 KB
/
GruntFile.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// Clean tmp directory
clean: {
build: [
'tmp/**/*',
'scripts/emotes/emoticons.css',
'scripts/icons/icons.css'
]
},
// Minify Javascript
uglify: {
options: {
sourceMap : true,
mangle : false,
preserveComments : 'some', //will preserve all comments that start with a bang (!) or include a closure compiler style
sourceMapRoot : './'
},
// Common external libraries
libs: {
options: {
preserveComments : 'all'
},
files: {
'static/vendor/libs.min.js': [
'static/vendor/overthrow/overthrow.min.js',
'static/vendor/jquery/jquery-1.10.2.min.js',
'static/vendor/jquery.cookie/jquery.cookie.js',
'static/vendor/jquery.mousewheel/jquery.mousewheel.min.js',
'static/vendor/jquery.validate/jquery.validate.min.js',
'static/vendor/jquery.nanoscroller-0.8.4/jquery.nanoscroller.min.js',
'static/vendor/bootstrap-3.1.1/js/bootstrap.js',
'static/vendor/moment/moment-2.4.0.min.js'
]
}
},
// General web libs
web: {
files: {
'static/web/js/destiny.min.js': [
'static/web/js/utils.js',
'static/web/js/destiny.js',
'static/web/js/feed.js',
'static/web/js/ui.js'
]
}
},
// Messages libs
messages: {
files: {
'static/web/js/messages.min.js': [
'static/web/js/messages.js'
]
}
},
// Chat libs
chat: {
files: {
'static/chat/js/chat.min.js': [
'scripts/chat/tld.js',
'static/chat/js/autocomplete.js',
'static/chat/js/formatters.js',
'static/chat/js/hints.js',
'static/chat/js/menu.js',
'static/chat/js/gui.js',
'static/chat/js/chat.js'
]
}
}
},
// Compress and compile CSS (LESS not required)
less : {
build : {
options : {
compress : true,
yuicompress : true,
optimization : 2
},
files : {
// Web CSS
'static/web/css/style.min.css' : [
'static/web/css/style.css'
],
// Messages CSS
'static/web/css/messages.min.css' : [
'static/web/css/messages.css'
],
// Chat CSS
'static/chat/css/style.min.css' : [
'static/vendor/jquery.nanoscroller-0.8.4/nanoscroller.css',
'static/chat/css/style.css',
'scripts/emotes/emoticons.css',
'scripts/icons/icons.css'
]
}
}
},
// "Glue" image sprites
glue: {
// Emoticons - you should run less:emoticons after running this
emoticons: {
src : 'scripts/emotes/emoticons',
options : '--sprite-namespace= --namespace=chat-emote.chat-emote --css=scripts/emotes --css-template=scripts/emotes/emoticons.jinja --img=scripts/emotes --url=../img/ --crop --pseudo-class-separator=_'
},
icons: {
src : 'scripts/icons/icons',
options : '--sprite-namespace= --namespace=icon --css=scripts/icons --img=scripts/icons --css-template=scripts/icons/icons.jinja --url=../img/ --pseudo-class-separator=_'
},
},
tldFetcher: {
options: {
targetFile: 'scripts/chat/tld.js'
},
defaults: {}, // no-op target for convenience
fetch: {} // does a fetch + replace on targetFile
},
// Copy the emoticon.png to static dir
copy: {
gluedimages: {
files: [
{expand: true, flatten: true, src: 'scripts/emotes/emoticons.png', dest: 'static/chat/img/', filter: 'isFile'},
{expand: true, flatten: true, src: 'scripts/icons/icons.png', dest: 'static/chat/img/', filter: 'isFile'}
]
}
},
// Bump the package version bump | bump:minor | bump:major
bump: {
options: {
files: [
'package.json',
'composer.json'
],
commit : false,
createTag : false,
push : false
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-glue');
grunt.loadNpmTasks('grunt-bump');
grunt.loadTasks('tasks');
// Build javascript
grunt.registerTask('build:js', [
'uglify:libs',
'uglify:messages',
'uglify:web',
'uglify:chat'
]);
// Build css
grunt.registerTask('build:css', [
'less:build'
]);
// Build images, fonts etc
grunt.registerTask('build:assets', [
'glue:emoticons',
'glue:icons',
'copy:gluedimages'
]);
// Build javascript
grunt.registerTask('build:static', [
'build:js',
'build:css'
]);
// Build task to retrieve all external data
grunt.registerTask('build:fetch', [
'tldFetcher:fetch'
]);
// Build all resources
grunt.registerTask('build', [
'clean',
'build:fetch',
'build:assets',
'build:static'
]);
// Default
grunt.registerTask('default', [
'build'
]);
};