-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gruntfile.js
70 lines (62 loc) · 1.7 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
/*jshint camelcase:false*/
'use strict';
module.exports = function (grunt)
{
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-connect');
var config = {
app: 'app'
};
grunt.initConfig({
config: config,
jshint: {
options: {
jshintrc: true
},
all: ['app/**/*.js', 'test/**/*.js']
},
watch: {
livereload: {
options: {
livereload: '<%= connect.options.livereload %>'
},
files: [
'<%= config.app %>/**/*.html', '<%= config.app %>/**/*.js'
]
}
},
connect: {
options: {
port: 9000, livereload: 35729, hostname: 'localhost'
},
livereload: {
options: {
open: true, middleware: function (connect)
{
return [
connect().use('/bower_components', connect.static('./bower_components')), connect.static(config.app)
];
}
}
}
},
karma: {
unit: {
configFile: 'test/karma.conf.js',
singleRun: true
},
dev: {
configFile: 'test/karma.conf.js',
singleRun: false
}
}
});
grunt.registerTask('serve', function ()
{
grunt.task.run([
'connect:livereload', 'watch'
]);
});
grunt.registerTask('default', ['serve']);
};