Add local guide for running and testing a local fork#62
Open
gaggle wants to merge 1 commit intopkgxdev:mainfrom
Open
Add local guide for running and testing a local fork#62gaggle wants to merge 1 commit intopkgxdev:mainfrom
gaggle wants to merge 1 commit intopkgxdev:mainfrom
Conversation
a24dbc9 to
4c4b852
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Contributing in
README.md, walking through the two stepsneeded to make a clone of this repo serve as your daily-driver
dev.app.tsruns directly via its shebang, but two gotchas trip upcontributors trying to test changes end-to-end: (1) symlinking
app.tsbreaks Deno's
deno.jsonresolution because Deno doesn't follow symlinksto find its config file, so a thin shell wrapper is needed; (2) the
shellcode embeds the
devbinary path by searching$PATHat generationtime, so the wrapper has to win that lookup over any other installed
dev(e.g. from
pkgmor Homebrew).AI Intent
devto validatepkgxdev/dev#61 in their daily
shell environment. The setup wasn't obvious from the existing README, so once
worked out, the author asked the assistant to capture the procedure as a
README addition so future contributors don't re-derive it.
shell snippets, and the verification command. Author tested each step in
their own environment and reviewed the final wording.
Risk Assessment
Rollback Plan
Validation
during the prior debugging session and produced the expected results
(wrapper script created with correct content via the heredoc, hook body
embedded the local path,
grep evalreturned the expected line). Markdownrendering reviewed locally.
Internal/Public Boundary Check
added.