-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGruntfile.js
executable file
·40 lines (39 loc) · 1.05 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
module.exports = function(grunt) {
// Configuration for testing with using the qunit.
grunt.initConfig({
pkg: '<json:package.json>',
qunit: {
files: ['t/test.html']
},
jshint: {
default: {
src: ['jquery.simple-dtpicker.js'],
options: {
eqnull: true,
loopfunc: true,
},
predef: [
'eqnull', 'eqeqeq'
]
}
},
jquerymanifest: {
options: {
source: grunt.file.readJSON('package.json'),
overrides: {
name: "simple-dtpicker",
docs: "https://github.com/mugifly/jquery-simple-datetimepicker/blob/master/README.md",
demo: "http://mugifly.github.com/jquery-simple-datetimepicker/jquery.simple-dtpicker.html",
keywords: ["date","time","picker","input","form","datepicker","timepicker"]
}
}
}
});
// Load a module
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-jquerymanifest');
grunt.loadNpmTasks('grunt-contrib-jshint');
// Register a tasks
grunt.registerTask('test', ['qunit', 'jshint']);
grunt.registerTask('default', ['jquerymanifest', 'test']);
}