We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f8f459 commit 4d2bce1Copy full SHA for 4d2bce1
1 file changed
packages/create-audius-app/index.ts
@@ -4,6 +4,7 @@ import { Command } from 'commander'
4
import path from 'path'
5
import prompts from 'prompts'
6
import { createApp } from './create-app'
7
+import type { ExampleType } from './helpers/examples'
8
import { validateNpmName } from './helpers/validate-pkg'
9
import packageJson from './package.json'
10
import { isFolderEmpty } from './helpers/is-folder-empty'
@@ -108,7 +109,7 @@ async function run() {
108
109
process.exit(1)
110
}
111
- const example = (typeof exampleOption === 'string' ? exampleOption : 'react-hono').trim()
112
+ const example = (typeof exampleOption === 'string' ? exampleOption : 'react-hono').trim() as ExampleType
113
114
await createApp({
115
appPath: resolvedProjectPath,
0 commit comments