-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
342 lines (313 loc) · 10.5 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/*global module:false*/
var LIVERELOAD_PORT = 35729;
var lrSnippet = require('connect-livereload')({ port: LIVERELOAD_PORT });
var mountFolder = function (connect, dir) {
return connect['static'](require('path').resolve(dir));
};
module.exports = function (grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: [
'src/app/**/*.js',
'!src/app/**/flXHR.js',
'!src/app/**/strophe.flxhr.js',
'!src/app/**/swfobject.js',
'!src/app/**/hello.js'
],
options: {
jshintrc: true
}
},
connect: {
options: {
port: 9000,
// change this to '0.0.0.0' to access the server from outside
hostname: 'localhost'
},
// load src code w/ livereload
src: {
options: {
base: 'src'
}
},
// load built app
build: {
options: {
base: 'www'
}
}
},
//Open default browser at the app
open: {
src: {
path: 'http://localhost:<%= connect.options.port %>/'
},
build: {
path: 'http://localhost:<%= connect.options.port %>/'
}
},
//setup watch tasks
watch: {
options: {
nospan: true,
livereload: LIVERELOAD_PORT
},
source: {
files: ['./src/app/**/*.js','.src/app/**/*.styl'],
tasks: ['hint']
},
livereload: {
options: {
livereload: LIVERELOAD_PORT
},
files: [
'./src/**/*.js',
'./src/**/*.html',
'./src/**/*.css'
]
}
},
clean: {
// clean the output directory before each build
build: ['www'],
// clean useless file on production environment.
final: ['www/**/*.consoleStripped.js', 'www/**/*.uncompressed.js', 'www/**/*.js.map', 'www/app/resources/*.styl', 'www/*.proc.html'],
// clean bower packages
bower: ['src/dijit', 'src/dojo', 'src/dgrid', 'src/dojo-bootstrap', 'src/dojox', 'src/put-selector', 'src/util', 'src/xstyle', 'src/bootstrap', 'src/jquery', 'src/spinjs'],
},
//build dojo
dojo: {
dist: {
options: {
profile: 'profiles/app.profile.js', // Profile for build
}
},
options: {
// You can also specify options to be used in all your tasks
dojo: 'src/dojo/dojo.js', // Path to dojo.js file in dojo source
load: 'build', // Optional: Utility to bootstrap (Default: 'build')
// profiles: [], // Optional: Array of Profiles for build
// appConfigFile: '', // Optional: Config file for dojox/app
// package: '', // Optional: Location to search package.json (Default: nothing)
// packages: [], // Optional: Array of locations of package.json (Default: nothing)
// require: '', // Optional: Module to require for the build (Default: nothing)
// requires: [], // Optional: Array of modules to require for the build (Default: nothing)
// action: '', // Optional: Build action, release, help. clean has been deprecated.
cwd: './', // Directory to execute build within
dojoConfig: '', // Optional: Location of dojoConfig (Default: null),
// Optional: Base Path to pass at the command line
// Takes precedence over other basePaths
// Default: null
basePath: './src',
releaseDir: '../www'
}
},
//generate stylesheets
stylus: {
CDN: {
options: {
define: {
CDN: true
}
},
files: {
'src/app/resources/app.css': 'src/app/resources/app.styl',
}
},
local: {
options: {
define: {
CDN: false
}
},
files: {
'src/app/resources/app.css': 'src/app/resources/app.styl',
}
}
},
//process html files to customize depending environments
processhtml: {
CDN: {
options: {
dojoConfig: "app/dojoConfig.cdn.js"
},
files: {
'src/index.proc.html': ['src/index.html']
}
},
local: {
options: {
dojoConfig: "app/dojoConfig.js"
},
files: {
'www/index.proc.html': ['src/index.html']
}
}
},
copy: {
options: {},
bootstrap: {
src: ['**/*', '!js/**'],
expand: true,
cwd: 'src/bootstrap/dist',
dest: 'www/bootstrap',
filter: 'isFile'
},
jquery: {
src: ['**/*'],
expand: true,
cwd: 'src/jquery/dist',
dest: 'www/jquery',
filter: 'isFile'
},
'jquery-ui': {
src: ['**/*'],
expand: true,
cwd: 'src/jquery',
dest: 'www/jquery',
filter: 'isFile'
},
backupindex: {
src: 'src/index.html',
dest : 'src/index.html.bkp'
},
restoreindex: {
src: 'src/index.html.bkp',
dest: 'src/index.html'
},
procindex: {
src: 'src/index.proc.html',
dest: 'src/index.html'
}
},
//minify html files
minifyHtml: {
options: {
cdata: true
},
local: {
files: {
'www/index.html': 'www/index.proc.html'
}
}
},
//generate website on github pages to test easily online
'gh-pages': {
options: {
base: 'src'
},
src: ['app/**', 'index.html']
},
//build mobile app with cordova
cordova_cli: {
'build-android': {
options : {
cmd: 'build',
options: '--debug',
platforms: ['android']
}
},
'build-ios': {
options : {
cmd: 'build',
options: '--debug',
platforms: ['ios']
}
},
'build-browser': {
options : {
cmd: 'build',
options: '--debug',
platforms: ['ios']
}
},
'build-android-release': {
options : {
cmd: 'build',
options: '--release',
platforms: ['android']
}
},
'build-ios-release': {
options : {
cmd: 'build',
options: '--release',
platforms: ['ios']
}
},
'build-browser-release': {
options : {
cmd: 'build',
options: '--release',
platforms: ['ios']
}
},
},
//cordova NG
cordova: {
options: {
platforms: 'android',
build: 'debug'
}
},
});
// Load the plugins that provides more tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-open');
grunt.loadNpmTasks('grunt-gh-pages');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-dojo');
grunt.loadNpmTasks('grunt-processhtml');
grunt.loadNpmTasks('grunt-contrib-stylus');
grunt.loadNpmTasks('grunt-minify-html');
grunt.loadNpmTasks('grunt-copy');
grunt.loadNpmTasks('grunt-cordova-cli');
grunt.loadNpmTasks('grunt-cordova-ng');
grunt.registerTask('hint', ['jshint', 'stylus:local']);
grunt.registerTask('build', ['jshint', 'stylus:local', 'clean:build', 'dojo', 'copy:bootstrap', 'copy:jquery', 'copy:jquery-ui', 'processhtml:local', 'minifyHtml:local']);
grunt.registerTask('deploy', 'Deploys the built application', function (origin) {
var ori = origin || 'src';
var target = grunt.option('target') || 'browser';
// do something useful with target here
if (ori == 'src') {
grunt.task.run('stylus:CDN');
grunt.task.run('processhtml:CDN');
grunt.task.run('copy:backupindex');
grunt.task.run('copy:procindex');
grunt.task.run('gh-pages');
grunt.task.run('copy:restoreindex');
}
else if (ori == 'build' || ori == 'www') {
grunt.task.run('build');
grunt.task.run('clean:final');
if (target == 'browser') {
grunt.task.run('cordova_cli:add-browser');
grunt.task.run('cordova_cli:build-browser');
}
else if (target == 'android') {
if ( ! grunt.file.exists('platforms/android') ) {
grunt.task.run('cordova:platform:add:android');
}
grunt.task.run('cordova:build:android');
}
else if (target == 'ios') {
grunt.task.run('cordova_cli:add-ios');
grunt.task.run('cordova_cli:build-ios');
}
}
});
grunt.registerTask('serve', function (origin) {
var ori = origin || 'src';
grunt.task.run([
'jshint',
'connect:' + ori,
'open:' + ori,
'watch'
]);
});
grunt.registerTask('default', ['jshint']);
};