From a83f7e3b0be42b35a53be9b32ee2492264bc30f9 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Mon, 23 Jun 2025 17:56:51 -0400 Subject: [PATCH] Fixed typo in Grunt config to watch for the correct .coffee file type --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index be0ed86..c3bffb7 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -44,7 +44,7 @@ module.exports = function(grunt) { } }, js: { - files: ['assets/scripts/**/*.js'], + files: ['assets/scripts/**/*.coffee'], tasks: ['coffee'], options: { atBegin: true,