From 5e11aa301206fe68b4e54f7e1eae9a73cce0fdf3 Mon Sep 17 00:00:00 2001 From: Daniel Miller Date: Tue, 12 Nov 2024 13:46:10 -0500 Subject: [PATCH] Remove gruntfile.js --- Gruntfile.js | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 Gruntfile.js diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index f6e87860d..000000000 --- a/Gruntfile.js +++ /dev/null @@ -1,47 +0,0 @@ -module.exports = function(grunt) { - // Project configuration. - grunt.initConfig({ - pkg: grunt.file.readJSON('package.json'), - jshint: { - src: { - src: ['src/*.js'], - options: { - jshintrc: '.jshintrc', - } - }, - tests: { - src: ['tests/*.js'], - options: { - jshintrc: 'tests/.jshintrc' - } - } - }, - watch: { - files: [ - '<%= jshint.src.src %>', - '<%= jshint.tests.src %>', - 'tests/static/**/*.xml', - 'Gruntfile.js', - ], - tasks: ['test', 'jshint'], - options: { - interrupt: true, - } - }, - connect: { - server: { - options: { - port: grunt.option('port') || 8081, - base: '.', - } - } - }, - - }); - - grunt.loadNpmTasks('grunt-contrib-connect'); - grunt.loadNpmTasks('grunt-contrib-jshint'); - grunt.loadNpmTasks('grunt-contrib-watch'); - - grunt.registerTask('default', ['test', 'jshint']); -};