-
-
Notifications
You must be signed in to change notification settings - Fork 272
chore: update expired @lunariajs/core pkg.pr.new package
#1560
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
Merged
danielroe
merged 1 commit into
npmx-dev:main
from
shuuji3:chore/update-lunariajs-core-package
Feb 22, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
pkg.pr.new package expiry policy temporary registry💡 Result:
pkg.pr.new is explicitly a temporary, npm-compatible preview registry, not a permanent package host. (blog.stackblitz.com)
From the published infrastructure notes on its storage management:
Citations:
🌐 Web query:
pnpm github git dependency syntax package.json💡 Result:
pnpm supports the standard npm “git dependency” spec in
package.json, including GitHub shorthands.GitHub shorthand (most common)
{ "dependencies": { "my-lib": "user/repo", "my-lib-commit": "user/repo#97edff6f525f192a3f83cea1944765f769ae2678", "my-lib-branch": "user/repo#master", "my-lib-semver-tags": "user/repo#semver:^2.0.0" } }pnpm documents the same forms via
pnpm add(commit / branch /#semver:). [1]Explicit
github:(equivalent style){ "dependencies": { "my-lib": "github:user/repo#HEAD" } }npm’s package spec documents
github:user/repo#refanduser/repo#refas valid git shorthands. [2]Full git URLs (HTTPS/SSH) + ref
{ "dependencies": { "my-lib-https": "git+https://github.com/user/repo.git#v1.2.3", "my-lib-ssh": "git+ssh://git@github.com/user/repo.git#v1.2.3" } }This is the canonical “git URL as dependency” form per npm’s package spec. [2]
Notes
#can be a tag, branch, or commit SHA;#semver:<range>selects a matching tag/ref (when available). [1][2][3]pnpm add github:user/repo#<ref>. [1]Sources: pnpm
adddocs [1], npm package spec (git URLs & GitHub shorthands) [2], pnpm Git install examples (#commit,#branch,#semver) [3].🌐 Web query:
@lunariajs/core v1 release npm stable version💡 Result:
As of the latest npm publish information available,
@lunariajs/coredoes not have a v1.x stable release. The current stable (“latest”) version on npm is0.1.1. [1]Lunaria’s own announcement also frames the project’s first public release as v0.1, indicating it’s still pre-1.0. [2]
Sources: [1], [2]
pkg.pr.new references are ephemeral — this will expire again.
pkg.pr.new publishes unreleased packages to a temporary npm-compatible preview registry. Packages are automatically removed if they're at least 1 month old and haven't been downloaded in over a month, or if they exceed 6 months old regardless of download activity. This PR swaps one expired commit hash for another, but the new reference (
904b935) will expire under exactly the same conditions, causing the same deploy failure to recur.Consider switching to a non-expiring alternative until
@lunariajs/corev1 lands on npm as a stable release:♻️ Suggested alternative: git dependency (does not expire)
Once the v1 branch publishes a stable release to the npm registry, migrate to a pinned semver version (e.g.
"@lunariajs/core": "^1.0.0") to eliminate this class of breakage entirely.📝 Committable suggestion