Skip to content

Commit

Permalink
Use fs.mkDirSync, see #1436
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Oct 15, 2024
1 parent 05a7e73 commit 7cb7aa9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion js/grunt/tasks/clean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@ export const clean = ( async () => {
if ( grunt.file.exists( buildDirectory ) ) {
grunt.file.delete( buildDirectory );
}
grunt.file.mkdir( buildDirectory );
fs.mkdirSync( buildDirectory, { recursive: true } );
} )();

0 comments on commit 7cb7aa9

Please sign in to comment.