@codedrifters/configulator 0.0.418 → 0.0.420
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.mts +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +10 -7
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +10 -7
- package/lib/index.mjs.map +1 -1
- package/package.json +3 -3
package/lib/index.mjs
CHANGED
|
@@ -21292,12 +21292,15 @@ function buildBabysitPrsSkill(policy) {
|
|
|
21292
21292
|
"",
|
|
21293
21293
|
"- **`gh` must be on `PATH`.** Some non-interactive sessions start",
|
|
21294
21294
|
" with a minimal `PATH` that omits the package-manager prefix.",
|
|
21295
|
-
" Resolve it **once** per session with `command -v gh
|
|
21296
|
-
" fails,
|
|
21297
|
-
|
|
21298
|
-
" `/usr/local/bin` or `/home/linuxbrew/.linuxbrew/bin`
|
|
21299
|
-
"
|
|
21300
|
-
"
|
|
21295
|
+
" Resolve it **once** per session with `command -v gh`. If that",
|
|
21296
|
+
" fails, invoke `gh` by its absolute path for the rest of the",
|
|
21297
|
+
" session (`/opt/homebrew/bin/gh` on Homebrew macOS,",
|
|
21298
|
+
" `/usr/local/bin/gh` or `/home/linuxbrew/.linuxbrew/bin/gh`",
|
|
21299
|
+
" elsewhere). **Never prefix commands with `export PATH=\u2026`** \u2014 a",
|
|
21300
|
+
" leading `export` stops the command string from matching the",
|
|
21301
|
+
" repo's `Bash(gh \u2026)` permission rules, so every call is denied.",
|
|
21302
|
+
" Abort the cycle with a clear diagnostic if `gh` is still",
|
|
21303
|
+
" unresolvable \u2014 never fall back to raw `curl`.",
|
|
21301
21304
|
"- **Resolve the default branch from the repo, never hard-code it:**",
|
|
21302
21305
|
"",
|
|
21303
21306
|
" ```bash",
|
|
@@ -34451,7 +34454,7 @@ var VERSION = {
|
|
|
34451
34454
|
/**
|
|
34452
34455
|
* Version of Projen to use.
|
|
34453
34456
|
*/
|
|
34454
|
-
PROJEN_VERSION: "0.101.
|
|
34457
|
+
PROJEN_VERSION: "0.101.23",
|
|
34455
34458
|
/**
|
|
34456
34459
|
* Version of `actions/setup-node` to use in GitHub workflows.
|
|
34457
34460
|
* Tracks the version projen currently emits (see node_modules/projen/lib/github/workflows.js).
|