forked from vijay00m/UI5SplitApp-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
59 lines (52 loc) · 1.66 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
'use strict';
// url config
var urlConfig = {
protocol : 'http',
host : 'localhost',
port : '8877',
urlPath : '/ui5-boilerplate'
}
module.exports = function(grunt) {
// load tasks from plugins
grunt.loadNpmTasks('grunt-express-server');
grunt.loadNpmTasks('grunt-open');
grunt.loadNpmTasks('grunt-contrib-watch');
// config
grunt.initConfig({
watch: {
express: {
files: ['**/*.js'],
tasks: ['express:dev'],
options: {
spawn: false
}
}
},
open: {
dev: {
path: urlConfig.protocol + '://' + urlConfig.host + ':' + urlConfig.port + urlConfig.urlPath
}
},
express: {
options: {
// Override defaults here, see more at: https://npmjs.org/package/grunt-express-server
args: [urlConfig.protocol, urlConfig.host, urlConfig.port, urlConfig.urlPath]
},
dev: {
options: {
script: 'dev_server.js',
delay: 100
}
}
// add more servers here...
}
});
// events
grunt.event.on('watch', function(action, filepath, target) {
grunt.log.writeln(target + ': ' + filepath + ' has ' + action);
});
// tasks
grunt.registerTask('server:dev', ['express:dev', 'open:dev', 'watch']);
grunt.registerTask('server', ['server:dev']); // alias for "server:dev", since there are no other servers (yet)
grunt.registerTask('default', ['server:dev']); // default points to 'server' task
};