generated from ubiquity/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: some cases slipping and output dir not being found
- Loading branch information
1 parent
f6d513a
commit acffea5
Showing
3 changed files
with
42 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import fs from "fs"; | ||
|
||
export function createDirectoryIfNotExists(directoryPath: string): void { | ||
if (!fs.existsSync(directoryPath)) { | ||
fs.mkdirSync(directoryPath); | ||
console.log(`Directory "${directoryPath}" created.`); | ||
} else { | ||
console.log(`Directory "${directoryPath}" already exists.`); | ||
} | ||
} |