diff --git a/packages/cli/src/utils/fs.ts b/packages/cli/src/utils/fs.ts index 7eb546b..1f5a705 100644 --- a/packages/cli/src/utils/fs.ts +++ b/packages/cli/src/utils/fs.ts @@ -79,7 +79,7 @@ export async function ensureSingleFile(path: string) { } export async function ensureExistsDir(path: string) { - if (!(await existsDir(path))) throw new Error(`Dir is not crated: ${path}`); + if (!(await existsDir(path))) throw new Error(`Dir is not created: ${path}`); } export async function safeStat(path: string) {