Skip to content

Commit

Permalink
fix(install): use @latest tag instead of @next (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainLanz committed Feb 5, 2024
1 parent 9857c8e commit b57d323
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 @@ -289,7 +289,7 @@ export class InstallJapa extends BaseCommand {
if (!existsSync(pkgJsonPath)) {
await this.#createNewPkgJson(basename(this.destination), testScript)
await this.#installPackages([
...this.#packageToInstall.map((pkg) => `${pkg}@next`),
...this.#packageToInstall.map((pkg) => `${pkg}@latest`),
'ts-node',
'typescript',
])
Expand Down

0 comments on commit b57d323

Please sign in to comment.