@@ -39,7 +39,7 @@ async function buildSource(options = {}) {
3939 if ( ! skipClean ) {
4040 const exitCode = await runSequence ( [
4141 {
42- args : [ 'scripts/load.cjs' , ' clean', '--dist' , '--quiet' ] ,
42+ args : [ 'scripts/clean.mjs ' , '--dist' , '--quiet' ] ,
4343 command : 'node' ,
4444 } ,
4545 ] )
@@ -90,13 +90,13 @@ async function buildTypes(options = {}) {
9090
9191 if ( ! skipClean ) {
9292 commands . push ( {
93- args : [ 'scripts/load.cjs' , ' clean', '--types' , '--quiet' ] ,
93+ args : [ 'scripts/clean.mjs ' , '--types' , '--quiet' ] ,
9494 command : 'node' ,
9595 } )
9696 }
9797
9898 commands . push ( {
99- args : [ 'exec' , 'tsgo' , '--project' , '.config/ tsconfig.dts.json' ] ,
99+ args : [ 'exec' , 'tsgo' , '--project' , 'tsconfig.dts.json' ] ,
100100 command : 'pnpm' ,
101101 } )
102102
@@ -331,7 +331,7 @@ async function main() {
331331 }
332332 exitCode = await runSequence ( [
333333 {
334- args : [ 'scripts/load.cjs' , ' clean', '--dist' , '--types' , '--quiet' ] ,
334+ args : [ 'scripts/clean.mjs ' , '--dist' , '--types' , '--quiet' ] ,
335335 command : 'node' ,
336336 } ,
337337 ] )
0 commit comments