-
Notifications
You must be signed in to change notification settings - Fork 91
/
Gruntfile.js
47 lines (40 loc) · 1.14 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: ['Gruntfile.js', 'jquery.dfp.js', 'tests/spec/*.js']
},
uglify: {
options: {
banner: '/**\n * jQuery DFP v<%= pkg.version %>\n * http://github.com/coop182/jquery.dfp.js\n *\n * Copyright <%= grunt.template.today("yyyy") %> Matt Cooper\n * Released under the MIT license\n */\n'
},
build: {
src: 'jquery.dfp.js',
dest: 'jquery.dfp.min.js'
}
},
jasmine: {
components: {
src: ['jquery.dfp.js'],
options: {
vendor: [
'http://code.jquery.com/jquery-1.11.0.js',
'tests/plugins.js'
],
specs: 'tests/spec/*Spec.js'
}
}
}
});
// Load the plugin that provides the "jshint" task.
grunt.loadNpmTasks('grunt-contrib-jshint');
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-uglify');
// Load the plugin that provides the "jasmine" task.
grunt.loadNpmTasks('grunt-contrib-jasmine');
// Default task(s).
grunt.registerTask('default', ['jshint', 'jasmine', 'uglify']);
// Travis task(s).
grunt.registerTask('travis', ['jshint', 'jasmine']);
};