Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add support for installing specific versions of packages #4878

Open
wants to merge 1 commit into
base: 6.x
Choose a base branch
from

Conversation

ThisIsMissEm
Copy link

🔗 Linked issue

This enables what's described in adonisjs/ace#163

However, I cannot think of a way to actually test this, since @antfu/install-pkg doesn't provide a way to not actually do anything (i.e., run under test)

❓ Type of change

  • 🐞 Bug fix (a non-breaking change that fixes an issue)
  • 👌 Enhancement (improving an existing functionality like performance)
  • ✨ New feature (a non-breaking change that adds functionality)
  • ⚠️ Breaking change (fix or feature that would cause existing functionality to change)

📚 Description

Currently when using node ace add <package> it's not possible to install a prerelease or specific released version of a package, so if we have @adonisjs/transmit releasing a prerelease of v5.0.0-next.0 which isn't the latest tag, but the next tag, we can't install that through node ace add, instead we'd have to install manually via package.json the specific version, and then call node ace configure <package> separately.

The way the tests are written, I cannot see a way to actually add test coverage for this.

📝 Checklist

  • I have linked an issue or discussion.
  • I have updated the documentation accordingly.

Comment on lines +94 to +99
const packageToInstall = npmPackageVersion
? `${npmPackageName}@${npmPackageVersion}`
: npmPackageName

try {
await installPackage(npmPackageName, {
await installPackage(packageToInstall, {
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't work for the packages that are filesystem based installs, like those used in the tests. Really the actual installation should probably be mocked out in most of the tests, since we can probably assume that installPackage does its thing.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reason we don't mock is, because we have been bitten in the past with the install-pkg package. They swapped the underlying fetch library that had different timeout settings and suddenly all installations taking longer than x timeout started failing.

Comment on lines +184 to +185
const packageVersion = await fs.contentsJson('package.json')
console.log({ packageVersion })
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was me trying to grab the root package.json so I could just use an already installed package at it's installed version, but uh, that doesn't work due to scoping of the filesystem — I'd probably have to do something different.

Idea was to use like the edge.js package from the root package.json as a node ace add edge.js <version from package.json> type thing, such that we're not hitting the network to install a specific version, whilst avoiding the filesystem path based installs which don't support versions.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we can read it manually using the fs package of Node.js vs the test helper?

Copy link

This pull request has been marked as stale because it has been inactive for more than 21 days. Please reopen if you still intend to submit this pull request

@github-actions github-actions bot added the Stale label Mar 13, 2025
@ThisIsMissEm
Copy link
Author

Haven't had time to progress on this, but I still think it's a good feature if we can figure out how to reasonably test it.

@thetutlage
Copy link
Member

Yup, no worries, we can keep it open.

@github-actions github-actions bot removed the Stale label Mar 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants