dongfeng-pay/jhboss/static/lib/bootstrap-datetimepicker/Gruntfile.js

26 lines
460 B
JavaScript
Raw Normal View History

2019-12-19 14:47:58 +08:00
module.exports = (grunt) => {
require('load-grunt-tasks')(grunt)
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: {
src: ['./js/bootstrap-datetimepicker.js']
}
},
versioncheck: {
target: {
options: {
hideUpToDate: true
}
}
}
})
grunt.registerTask('default', ['jshint', 'versioncheck'])
}