-
Notifications
You must be signed in to change notification settings - Fork 26
/
Gruntfile.js
66 lines (64 loc) · 1.55 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
module.exports = function (grunt) {
// Project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
copy: {
dev: {
src: 'index.html',
dest: 'index-dev.html',
options: {
process: function (content /*, srcpath*/) {
// do not register service worker
return content.replace(
/<script type="text\/javascript" src="src\/register-sw\.js"><\/script>/g,
'<!-- <script type="text/javascript" src="src/register-sw.js"> \
</script> -->'
);
}
}
}
},
connect: {
prod: {
options: {
port: 8080,
hostname: 'localhost',
livereload: true
}
},
dev: {
options: {
port: 8080,
hostname: 'localhost',
livereload: true,
base: {
path: './',
options: {
index: 'index-dev.html'
}
}
}
}
},
watch: {
scripts: {
files: [
'**/*.js',
'!**/node_modules/**',
'**/node_modules/dwv/**',
'*.html'
],
options: {
spawn: false,
livereload: true
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-watch');
// Task to run tests
grunt.registerTask('start', ['connect:prod', 'watch']);
grunt.registerTask('dev', ['copy:dev', 'connect:dev', 'watch']);
};