Updating Grunt commands
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2025-07-14 13:44:49 -04:00
parent 6434fd0b9c
commit 73cb99630f
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']);
};