-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
169 lines (159 loc) · 5.75 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
'use strict';
module.exports = function (grunt) {
grunt.loadTasks('tasks');
require('time-grunt')(grunt);
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
var chalk = require('chalk');
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
attention: {
'example-server-started': {
options: {
message: 'Server started: ' + chalk.underline.blue('http://localhost:8080/') + '',
borderColor: 'bgBlue'
}
},
'example-deploy-complete': {
options: {
message: chalk.green.bold('Files have been pushed to S3.') + '\n\n' + chalk.green('500 files uploaded successfully in 50 seconds.'),
border: 'double',
borderColor: 'bgGreen'
}
},
templated: {
options: {
message: 'This example is templated: <%= pkg.name %> by <%= pkg.author.name %>. It has no border setting.'
}
},
'red-thin': {
options: {
message: 'This is border: thin, borderColor: red.',
border: 'thin',
borderColor: 'red'
}
},
'red-double': {
options: {
message: 'This is border: double, borderColor: cyan.',
border: 'double',
borderColor: 'cyan'
}
},
'blue-stacked': {
options: {
message: 'This is border: stacked, borderColor: blue.',
border: 'stacked',
borderColor: 'blue'
}
},
'long-magenta-thick': {
options: {
message: 'This is really long text with a bgMagenta background. This is really long text with a bgMagenta background. This is really long text with a bgMagenta background. This is really long text with a bgMagenta background. This is really long text with a bgMagenta background. This is really long text with a bgMagenta background. This is really long text with a bgMagenta background. ',
borderColor: 'bgMagenta'
}
},
'long-text-gray-comment': {
options: {
message: "This is really long text with a 'comment' border that is gray. This is really long text with a 'comment' border that is gray. This is really long text with a 'comment' border that is gray. This is really long text with a 'comment' border that is gray. This is really long text with a 'comment' border that is gray. This is really long text with a 'comment' border that is gray. ",
border: 'comment',
borderColor: 'gray'
}
},
'custom-box-!': {
options: {
message: "This is using border: '!' and borderColor: 'bgRed'.",
border: '!',
borderColor: 'bgRed'
}
},
'too damn long': {
options: {
message: 'this_is_a_very_very_very_very_very_very_very_very_very_very_very_very_long_message',
border: 'double',
borderColor: 'bgGreen'
}
}
},
cafemocha: {
test: {
src: 'test/**/*.test.js',
options: {
timeout: 10000,
ui: 'bdd',
reporter: 'spec'
}
}
},
jshint: {
options: {
node: true, // node's globals
force: true, // don't stop when there is an error
maxerr: 10000, // keep running no matter how many errors were found
globalstrict: true, // allows 'use strict' with single quotes
newcap: false // allows functions to be capitalized without New
},
gruntfile: {
options: {
},
files: {
src: [
'Gruntfile.js'
]
}
},
tasks: {
options: {
globals: {
}
},
files: {
src: [
'tasks/**/*.js'
]
}
},
test: {
options: {
expr: true, // allow expressions like foo.ok;
globals: {
it: true,
xit: true,
expect: true,
runs: true,
waits: true,
waitsFor: true,
beforeEach: true,
afterEach: true,
describe: true,
xdescribe: true
}
},
files: {
src: 'test/**/*.js'
}
}
},
watch: {
test: {
files: [
'Gruntfile.js',
'lib/**/*',
'test/**/*'
],
tasks: ['test'],
options: {
nospawn: true
}
}
}
});
grunt.registerTask('test', [
'jshint',
'attention',
'cafemocha'
]);
grunt.registerTask('default', [
'test'
]);
};