From 8e813e91e7b9f5fd4db56c5b5d76b98e8bc9adfa Mon Sep 17 00:00:00 2001 From: Sabrina Ferguson Date: Fri, 9 Aug 2024 09:40:32 -0400 Subject: [PATCH] chore: update cspell ignorePaths --- cspell-config/cspell-misc.txt | 1 - cspell.json | 2 -- src/commands/create/index.ts | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/cspell-config/cspell-misc.txt b/cspell-config/cspell-misc.txt index f847076..52399cc 100644 --- a/cspell-config/cspell-misc.txt +++ b/cspell-config/cspell-misc.txt @@ -1,5 +1,4 @@ sepolia -goerli IERC dockerized zkcli diff --git a/cspell.json b/cspell.json index 159eb55..b514944 100644 --- a/cspell.json +++ b/cspell.json @@ -1,8 +1,6 @@ { "language": "en", "ignorePaths": [ - "bun.lockb", - "*.css", "*.config.*", "node_modules/**", ".*/**", diff --git a/src/commands/create/index.ts b/src/commands/create/index.ts index 9f6b26c..5f51702 100644 --- a/src/commands/create/index.ts +++ b/src/commands/create/index.ts @@ -107,7 +107,7 @@ export const handler = async (predefinedFolderName: string | undefined, options: ], required: true, }, - ]); + ], {projectType: options.project }); await templates[projectType](folderLocation, options.folderName); } else {