import { Command, AbortError } from'grind-cli'exportclassWatchCommandextendsCommand {
name = 'watch'
description = 'Start the HTTP server and monitors for changes'run() {
thrownewAbortError('You should not be seeing this, please check your Grind project.')
}
}