-
Notifications
You must be signed in to change notification settings - Fork 322
/
Gruntfile.js
94 lines (85 loc) · 2.21 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
var path = require('path');
module.exports = function(grunt) {
var testport = 3030;
var testportKeepalive = 3333;
var testhostname = '127.0.0.1';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
options: {
separator: ';'
},
dist: {
src: ['src/**/*.js'],
dest: 'dist/yepnope.js'
}
},
uglify: {
options: {
banner: '/*!yepnope<%= pkg.version %>|New BSD*/\n'
},
dist: {
files: {
'dist/yepnope.min.js': ['<%= concat.dist.dest %>']
}
}
},
mocha: {
all : {
options: {
reporter: 'Spec',
// mocha options
mocha: {
ignoreLeaks: false
},
// URLs passed through as options
urls: [ 'http://' + testhostname + ':' + testport + '/test/' ],
// Indicates whether 'mocha.run()' should be executed in
// 'bridge.js'
run: true
}
}
},
jshint: {
files: ['gruntfile.js', 'src/**/*.js', 'test/test.js'],
options: {
// options here to override JSHint defaults
globals: {
yepnope: true,
yeptest: true,
document: true
}
}
},
express: {
test: {
options: {
hostname: testhostname,
port: testport,
bases: path.resolve('.'),
monitor: {},
server: path.resolve('./test/app/server')
}
},
serve: {
options : {
hostname: testhostname,
port: testportKeepalive,
bases: path.resolve('.'),
monitor: {},
server: path.resolve('./test/app/server')
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-mocha');
grunt.loadNpmTasks('grunt-express');
grunt.registerTask('lint', ['jshint']);
grunt.registerTask('test', ['jshint', 'express:test', 'mocha']);
grunt.registerTask('serve', ['express:serve', 'express-keepalive']);
grunt.registerTask('build', ['test', 'concat', 'uglify']);
grunt.registerTask('default', ['build']);
};