We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b730326 commit cd7866dCopy full SHA for cd7866d
1 file changed
packages/create-wapi-app/src/create-bot.ts
@@ -62,7 +62,7 @@ export async function createWhatsappBot(options: {
62
const deno = packageManagerInUse === PackageManagerEnum.Deno;
63
await cp(
64
new URL(
65
- path.resolve(`./template/${deno ? "Deno" : isTypescriptEnabled ? "typeScript" : 'javaScript'}`),
+ path.resolve(`./template/${deno ? "Deno" : isTypescriptEnabled ? "typescript" : 'javascript'}`),
66
import.meta.url,
67
),
68
root,
@@ -76,7 +76,7 @@ export async function createWhatsappBot(options: {
76
if (bun) {
77
78
79
- `../template/Bun/${isTypescriptEnabled ? "typeScript" : "javaScript"
+ `../template/Bun/${isTypescriptEnabled ? "typescript" : "javascript"
80
}/package.json`,
81
82
0 commit comments