Skip to content

Commit

Permalink
fix: install latest japa release instead of preview version
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainLanz committed Sep 14, 2024
1 parent 2364c6b commit fde7b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install_japa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export class InstallJapa extends BaseCommand {

await writeFile(pkgJsonPath, JSON.stringify(pkgJson, null, 2))
this.logger.action('update package.json').succeeded()
await this.#installPackages(this.#packageToInstall.map((pkg) => pkg + '@next'))
await this.#installPackages(this.#packageToInstall.map((pkg) => pkg + '@latest'))
}

/**
Expand Down

0 comments on commit fde7b91

Please sign in to comment.