@@ -29,7 +29,7 @@ export async function runCreateLetter(options: {
2929
3030 const workspaceRoot = path . resolve (
3131 __dirname ,
32- "../../scripts/utilities/letter-test-data" ,
32+ "../../scripts/utilities/letter-test-data"
3333 ) ;
3434 const cmd = process . platform === "win32" ? "npm.cmd" : "npm" ;
3535 const root = path . resolve ( workspaceRoot ) ;
@@ -73,7 +73,7 @@ export async function runCreateLetter(options: {
7373 } ) ;
7474
7575 child . on ( "close" , ( code ) =>
76- code === 0 ? resolve ( ) : reject ( new Error ( `pnpm exited with ${ code } ` ) ) ,
76+ code === 0 ? resolve ( ) : reject ( new Error ( `pnpm exited with ${ code } ` ) )
7777 ) ;
7878 child . on ( "error" , reject ) ;
7979 } ) ;
@@ -91,7 +91,7 @@ export async function createSupplierData(options: {
9191
9292 const workspaceRoot = path . resolve (
9393 __dirname ,
94- "../../scripts/utilities/supplier-data" ,
94+ "../../scripts/utilities/supplier-data"
9595 ) ;
9696 const cmd = process . platform === "win32" ? "npm.cmd" : "npm" ;
9797 const root = path . resolve ( workspaceRoot ) ;
@@ -131,7 +131,7 @@ export async function createSupplierData(options: {
131131 } ) ;
132132
133133 child . on ( "close" , ( code ) =>
134- code === 0 ? resolve ( ) : reject ( new Error ( `pnpm exited with ${ code } ` ) ) ,
134+ code === 0 ? resolve ( ) : reject ( new Error ( `pnpm exited with ${ code } ` ) )
135135 ) ;
136136 child . on ( "error" , reject ) ;
137137 } ) ;
0 commit comments