There was an error while loading. Please reload this page.
1 parent 4eb3962 commit 9425ec9Copy full SHA for 9425ec9
1 file changed
src/commands/new.ts
@@ -3,7 +3,7 @@ import chalk from 'chalk'
3
4
export async function newProject({ projectName }: { projectName?: string }) {
5
try {
6
- const command = `npx --yes create-remix@latest --install --no-git-init --init-script --template epicweb-dev/epic-stack ${projectName ?? ''}`
+ const command = `npx --yes create-remix@2.16.8 --install --no-git-init --init-script --template epicweb-dev/epic-stack ${projectName ?? ''}`
7
execSync(command, { stdio: 'inherit' })
8
} catch (error) {
9
console.error(chalk.red('\n❌ Error:'), error)
0 commit comments