(dir, args = [], opts = {})
| 476 | } |
| 477 | |
| 478 | export function nextBuild(dir, args = [], opts = {}): any { |
| 479 | return runNextCommand(["build", dir, ...args], opts) |
| 480 | } |
| 481 | |
| 482 | export function nextExport(dir, {outdir}, opts = {}) { |
| 483 | return runNextCommand(["export", dir, "--outdir", outdir], opts) |
no test coverage detected