-
Notifications
You must be signed in to change notification settings - Fork 14
/
Gruntfile.js
61 lines (57 loc) · 1.71 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: ['Gruntfile.js', 'jquery.socialshareprivacy.js', 'test/socialshareprivacy_test.js','test/jquery-loader.js']
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> Version:<%= pkg.version %> <%= grunt.template.today("yyyy-mm-dd") %> */\n',
sourceMap: true
},
build: {
src: '<%= pkg.name %>.js',
dest: '<%= pkg.name %>.min.js'
}
},
qunit: {
all: {
options: {
urls: ['1.7.0', '1.8.0', '1.9.0', '1.10.2', '1.11.1', '2.0.3', '2.1.1'].map(function(version) {
return 'http://localhost:<%= connect.server.options.port %>/test/socialshareprivacy.html?jquery=' + version;
})
}
}
},
connect: {
server: {
options: {
port: 8085 // This is a random port, feel free to change it.
}
}
},
csslint: {
lax: {
options: {
import: false
},
src: ['socialshareprivacy/*.css']
}
},
jsonlint: {
all: {
src: [ 'bower.json', 'package.json' ]
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-csslint');
grunt.loadNpmTasks('grunt-jsonlint');
grunt.loadNpmTasks('grunt-sync-pkg');
grunt.registerTask('default', ['jshint', 'sync', 'jsonlint', 'connect', 'qunit','uglify']);
grunt.registerTask('test', ['jshint', 'jsonlint', 'connect', 'qunit']);
};