| 12345678910111213141516171819202122232425 |
- 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'])
- }
|