-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
123 lines (116 loc) · 2.48 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
'use strict';
module.exports = function(grunt) {
// show elapsed time at the end
require('time-grunt')(grunt);
// load tasks on demand (speeds up dev)
require('jit-grunt')(grunt, {
});
grunt.initConfig({
yeoman: {
src: 'src',
dist: 'dist',
test: 'test',
pkg: grunt.file.readJSON('package.json'),
meta: {
banner: '/*! <%= yeoman.pkg.name %> - v<%= yeoman.pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'* <%= yeoman.pkg.homepage %>\n' +
'* Copyright © <%= grunt.template.today("yyyy") %> ' +
'<%= yeoman.pkg.author.name %>; ' +
'Licensed <%= yeoman.pkg.license %> */'
},
},
watch: {
qa: {
files: [
'<%= yeoman.src %>/*.js',
'<%= yeoman.test %>/spec/*.js'
],
tasks: ['concurrent:qa']
},
bdd: {
files: [
'<%= yeoman.src %>/*.js',
'<%= yeoman.test %>/spec/*.js'
],
tasks: ['test']
}
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'Gruntfile.js',
'<%= yeoman.src %>/{,*/}*.js',
'<%= yeoman.test %>/spec/{,*/}*.js'
]
},
mocha: {
all: {
options: {
run: true,
log: true
},
src: ['<%= yeoman.test %>/index.html']
}
},
concurrent: {
qa: {
tasks: [
'jshint',
'jscs',
'mocha'
]
},
build: {
tasks: [
'uglify'
]
}
},
uglify: {
options: {
banner: '<%= yeoman.meta.banner %>'
},
dist: {
files: {
'dist/iptools-jquery-mlhmenu.min.js': 'src/iptools-jquery-mlhmenu.js'
}
}
},
clean: {
dist: {
files: [{
dot: true,
src: [
'<%= yeoman.dist %>/*'
]
}]
}
},
jscs: {
options: {
config: '.jscsrc',
esnext: false,
verbose: true
},
files: {
src: [
'Gruntfile.js',
'<%= yeoman.test %>/spec/*.js',
'<%= yeoman.src %>/*.js'
]
}
}
});
grunt.registerTask('test', ['mocha']);
grunt.registerTask('qa', ['concurrent:qa']);
grunt.registerTask('build', [
'concurrent:qa',
'clean:dist',
'concurrent:build'
]);
grunt.registerTask('default', ['build']);
grunt.registerTask('travis', ['concurrent:qa']);
};