-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
64 lines (60 loc) · 1.82 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
module.exports = function (grunt) {
'use strict';
// Middleware for directory listing
var mountFolder = function (connect, point) {
var path = require('path');
return connect.static(path.resolve(point));
};
// Project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
connect: {
options: {
port: 8080,
// change this to '0.0.0.0' to listen to all interfaces
hostname: '0.0.0.0'
},
livereload: {
options: {
middleware: function (connect, options) {
return [
require('connect-livereload')({
port: 33388
}),
mountFolder(connect, options.base),
connect.directory(options.base)
];
}
}
}
},
open: {
app: {
path: 'http://localhost:8080'
}
},
watch: {
app: {
files: ['src/js/**/*.js', '*.html'],
options: {
livereload: 33388
}
}
},
jshint : {
files : ['src/js/**/*.js'],
gruntfile: ['Gruntfile.js'],
options : {
jshintrc: true
}
},
});
// load all grunt tasks matching the `grunt-*` pattern, exclude `grunt-template-jasmine-requirejs`
require('load-grunt-tasks')(grunt, {pattern: ['grunt-*', '!grunt-template-jasmine-requirejs']});
grunt.registerTask('default', [
'jshint',
'connect:livereload',
'open',
'watch'
]);
};