-
Notifications
You must be signed in to change notification settings - Fork 0
Consume storyproof as a git dependency (experiment) #256
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -83,6 +83,20 @@ allowBuilds: | |
| # sourcemaps (SENTRY_AUTH_TOKEN set) — flip to true in the deploy pipeline. | ||
| "@sentry/cli": false | ||
| "@swc/core": false # native bindings ship via platform optionalDependencies | ||
| # First-party (github.com/leon0399/storyproof), consumed as a git dependency | ||
| # until a working version is on the registry. Git-hosted installs must run | ||
| # its prepack (tsdown build) — the repo ships source, dist/ is gitignored. | ||
| # Git-hosted packages are approved by repository URL, not name; this form | ||
| # covers every commit from the repo, so branch updates don't need | ||
| # re-approval. | ||
| # Both manifests of the same fetched repo get gated, and which one pnpm | ||
| # names depends on the install path: a cold --frozen-lockfile install (CI) | ||
| # evaluates the repo ROOT manifest (storyproof-monorepo, whose prepare | ||
| # builds the addon), a warm non-frozen install evaluates the subdirectory | ||
| # package. Exact resolved specs are the only matcher pnpm accepts for | ||
| # git-hosted packages, so both entries move on every storyproof commit. | ||
| "storyproof@https://codeload.github.com/leon0399/storyproof/tar.gz/95615e78bf6bdaca98b2fd5ba5b06d4377ee1319#path:packages/storyproof": true | ||
|
Comment on lines
+89
to
+98
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win Correct the re-approval comment. This 🤖 Prompt for AI Agents
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When Useful? React with 👍 / 👎. |
||
| "storyproof-monorepo@https://codeload.github.com/leon0399/storyproof/tar.gz/95615e78bf6bdaca98b2fd5ba5b06d4377ee1319": true | ||
| core-js-pure: false # funding banner | ||
| lefthook: false # binary ships via platform optionalDependencies; prepare script syncs hooks | ||
| sharp: false # native bindings ship via platform optionalDependencies | ||
|
|
||
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.
This switches the shipped dependency from the published npm placeholder to the git-hosted
mainbranch, while the newest relevantCHANGELOG.mdentry still explicitly says llame consumes the publishedstoryproofpackage pinned to0.0.1-alpha.1. Add a dated entry so the shipped chronology does not describe the opposite dependency source; repository policy requires even chores to update the changelog in the same PR.AGENTS.md reference: AGENTS.md:L94-L96
Useful? React with 👍 / 👎.