Updating Grunt commands

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent f81879302d
commit 03ef5cc905
2 changed files with 33 additions and 1 deletions

View File

@ -60,6 +60,8 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-coffee');
// CLI tasks.
grunt.registerTask('default', ['sass', 'coffee']);
grunt.registerTask('build', ['sass', 'coffee']);
grunt.registerTask('dev', ['watch']);
grunt.registerTask('default', ['build']);
};