File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
33import { setup } from "#dev/process" ;
44
5- const { execBuildLegacy } = setup ( import . meta. dirname ) ;
5+ const { execBuild } = setup ( import . meta. dirname ) ;
66
7- await execBuildLegacy ( ) ;
7+ await execBuild ( ) ;
Original file line number Diff line number Diff line change 22
33import { setup } from "#dev/process" ;
44
5- const { execBuildLegacy } = setup ( import . meta. dirname ) ;
5+ const { execBuild } = setup ( import . meta. dirname ) ;
66
7- await execBuildLegacy ( ) ;
7+ await execBuild ( ) ;
Original file line number Diff line number Diff line change 33import * as assert from "node:assert" ;
44import { setup } from "#dev/process" ;
55
6- const { execBuildLegacy } = setup ( import . meta. dirname ) ;
7- const output = await execBuildLegacy ( ) ;
6+ const { execBuild } = setup ( import . meta. dirname ) ;
7+ const output = await execBuild ( ) ;
88assert . ok ( output . status === 0 ) ;
You can’t perform that action at this time.
0 commit comments