Updated the Grunt watch command to check for static files as well
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Gregory Ballantine 2022-05-23 10:22:17 -04:00
parent 71e5c27e0c
commit 23f9105550

View File

@ -82,6 +82,14 @@ module.exports = function(grunt) {
atBegin: true, atBegin: true,
spawn: false spawn: false
} }
},
static: {
files: ['assets/static/*/*'],
tasks: ['copy'],
options: {
atBegin: true,
spawn: false
}
} }
} }
}); });