Skip to content

Commit 9425ec9

Browse files
authored
fix(new): set version of create-remix
Updated create-remix version to 2.16.8 in newProject function. Closes epicweb-dev/epic-stack#1026
1 parent 4eb3962 commit 9425ec9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/new.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import chalk from 'chalk'
33

44
export async function newProject({ projectName }: { projectName?: string }) {
55
try {
6-
const command = `npx --yes create-remix@latest --install --no-git-init --init-script --template epicweb-dev/epic-stack ${projectName ?? ''}`
6+
const command = `npx --yes create-remix@2.16.8 --install --no-git-init --init-script --template epicweb-dev/epic-stack ${projectName ?? ''}`
77
execSync(command, { stdio: 'inherit' })
88
} catch (error) {
99
console.error(chalk.red('\n❌ Error:'), error)

0 commit comments

Comments
 (0)