-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
44 lines (38 loc) · 924 Bytes
/
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
/* global module:false */
module.exports = function(grunt) {
var port = grunt.option('port') || 8000;
var host = grunt.option('host') || 'localhost';
// Project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
connect: {
server: {
options: {
port: port,
base: '.',
livereload: true,
open: true,
hostname: host
}
}
},
'gh-pages': {
src: ['**']
},
watch: {
options: {
livereload: true
},
src: {
files: ['index.html', '!node_modules/**']
}
}
});
// Dependencies
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-contrib-connect' );
grunt.loadNpmTasks( 'grunt-gh-pages' );
// Default task
grunt.registerTask( 'default', [ 'connect', 'watch' ] );
grunt.registerTask( 'publish', [ 'gh-pages' ] );
};