提交新项目

This commit is contained in:
kongyuebin
2019-12-19 14:47:58 +08:00
parent 7ba20ac1b9
commit f29066a984
609 changed files with 238892 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
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'])
}