(port, opts: RunNextCommandDevOptions, turbo = false)
| 296 | |
| 297 | // Blitz Utils |
| 298 | export function blitzLaunchApp(port, opts: RunNextCommandDevOptions, turbo = false) { |
| 299 | return runBlitzCommandDev(["dev", "-p", port, turbo ? "--turbo" : ""], undefined, opts) |
| 300 | } |
| 301 | |
| 302 | export function blitzBuild(args = [], opts = {}): any { |
| 303 | return runBlitzCommand(["build", ...args], opts) |
no test coverage detected