-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgruntfile.js
79 lines (70 loc) · 1.5 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
71
72
73
74
75
76
77
78
79
(function () {
'use strict';
module.exports = function (grunt) {
require('time-grunt')(grunt);
require('load-grunt-tasks')(grunt);
grunt.config('jshint', {
options: {
globals: {
module: true,
require: true
},
},
main: ['gruntfile.js', 'test/**/*.js']
});
grunt.config('csslint', {
options: {
'adjoining-classes': false
},
main: ['css/main.css']
});
grunt.config('nodeunit', {
main: ['test/**/*.js'],
options: {
//
}
});
grunt.config('clean', {
main: ['distribute']
});
grunt.config('copy', {
main: {
files: [
{
expand : true,
cwd : 'source',
src : ['**', '**/.*'],
dest : 'distribute'
}
]
}
});
grunt.config('connect', {
server: {
options: {
base: 'source',
open: true,
port: 1337,
livereload: true
}
}
});
grunt.config('watch', {
build: {
files: [
'source/css/*.css',
'source/js/*.js',
'source/img/*.js',
'source/index.html',
],
tasks: [],
options: {
livereload: true
}
}
});
grunt.registerTask('default', ['test', 'clean', 'copy']);
grunt.registerTask('test', ['jshint', 'csslint', 'nodeunit']);
grunt.registerTask('serve', ['connect', 'watch']);
};
}());