From f49160ad5178fbd06583bdd3b9dc5e0a5323fc2b Mon Sep 17 00:00:00 2001 From: confused-Techie Date: Sun, 5 Jan 2025 20:36:54 -0800 Subject: [PATCH] Update `grunt` --- Gruntfile.coffee | 11 +---------- package.json | 2 +- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 2d74697..0e0bdc5 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -2,14 +2,6 @@ module.exports = (grunt) -> grunt.initConfig pkg: grunt.file.readJSON('package.json') - coffee: - glob_to_multiple: - expand: true - cwd: 'src' - src: ['*.coffee'] - dest: 'lib' - ext: '.js' - coffeelint: options: no_empty_param_list: @@ -17,7 +9,6 @@ module.exports = (grunt) -> max_line_length: level: 'ignore' - src: ['src/*.coffee'] test: ['spec/*.coffee'] shell: @@ -33,6 +24,6 @@ module.exports = (grunt) -> grunt.loadNpmTasks('grunt-coffeelint') grunt.registerTask 'clean', -> require('rimraf').sync('lib') - grunt.registerTask('lint', ['coffeelint:src', 'coffeelint:test']) + grunt.registerTask('lint', ['coffeelint:test']) grunt.registerTask('default', ['lint', 'coffee']) grunt.registerTask('test', ['default', 'shell:test']) diff --git a/package.json b/package.json index 665d394..c615945 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "scandal", "version": "3.2.0", "description": "Directory Search and Scan Utilities", - "main": "./lib/scandal.js", + "main": "./src/scandal.js", "bin": { "scandal": "./bin/scandal" },