forked from KittyGiraudel/Countdown.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
96 lines (82 loc) · 2.11 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
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
var gruntConfig = {
pkg: grunt.file.readJSON('package.json'),
jasmine: {
src: 'Countdown.js',
options: {
specs: 'tests/Countdown.js',
keepRunner: true,
vendor: ['http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js']
}
},
jshint: {
all: [
'Countdown.js'
],
options: {
jshintrc: '.jshintrc'
}
},
uglify: {
options: {
mangle: true
},
target: {
files: {
'Countdown.min.js': ['Countdown.js']
}
}
},
connect: {
test: {
options: {
port: '8234',
hostname:'localhost',
keepalive: true
}
},
options: {
port: 9000,
hostname: 'localhost',
livereload: 35729
}
},
watch: {
uglify: {
files: 'Countdown.js',
tasks: ['uglify']
},
html: {
files: '*.html'
}
}
};
gruntConfig.jasmine.istanbul = {
src: gruntConfig.jasmine.src,
options: {
specs: gruntConfig.jasmine.options.specs,
template: require('grunt-template-jasmine-istanbul'),
templateOptions: {
coverage: 'output/coverage/coverage.json',
report: [
{type: 'html', options: {dir: 'output/coverage'}},
{type: 'cobertura', options: {dir: 'output/coverage/cobertura'}},
{type: 'text-summary'}
]
}
}
};
grunt.initConfig(gruntConfig);
grunt.registerTask('test', ['jasmine:istanbul', 'jshint']);
grunt.registerTask('deploy', ['uglify']);
grunt.registerTask('jasmine-server', 'start web server for jasmine tests in browser', function() {
grunt.task.run('jasmine::build');
grunt.event.once('connect.test.listening', function(host, port) {
var specRunnerUrl = 'http://' + host + ':' + port + '/_SpecRunner.html';
grunt.log.writeln('Jasmine specs available at: ' + specRunnerUrl);
require('open')(specRunnerUrl);
});
grunt.task.run('connect:test:keepalive');
});
};