@codedrifters/configulator 0.0.389 → 0.0.391

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.mjs CHANGED
@@ -15213,11 +15213,16 @@ function buildCheckBlockedScript(tiers, scopeGate, _runRatio) {
15213
15213
  " .[] |",
15214
15214
  ' (.body | split("\\n") | map(select(test("Depends on:"; "i"))) | .[0] // "") as $dep_line |',
15215
15215
  ' (.labels | map(.name) | map(select(startswith("type:"))) | .[0] // "") as $type_label |',
15216
- ' "\\(.number)\\t\\(.title)\\t\\($dep_line)\\t\\($type_label)"',
15216
+ ' "\\(.number)\\t\\(.title)\\t\\($type_label)\\t\\($dep_line)"',
15217
15217
  " ')",
15218
15218
  "",
15219
15219
  ' local results=""',
15220
- " while IFS=$'\\t' read -r num title dep_line type_label; do",
15220
+ " # Field order: number, title, type_label, dep_line. dep_line is the",
15221
+ " # only optional field, so it MUST stay last: an absent Depends-on line",
15222
+ " # yields an empty trailing field, whereas an empty non-last field",
15223
+ " # collapses under IFS=tab and shifts every later field left, dropping",
15224
+ " # type_label off the end (#884). Matches the cmd_stale blocked scan.",
15225
+ " while IFS=$'\\t' read -r num title type_label dep_line; do",
15221
15226
  ' [[ -z "$num" ]] && continue',
15222
15227
  "",
15223
15228
  ' local deps=""',
@@ -18609,6 +18614,7 @@ var PnpmWorkspace = class _PnpmWorkspace extends Component {
18609
18614
  this.minimumReleaseAgeStrict = options.minimumReleaseAgeStrict;
18610
18615
  this.minimumReleaseAgeIgnoreMissingTime = options.minimumReleaseAgeIgnoreMissingTime;
18611
18616
  project.addPackageIgnore(this.fileName);
18617
+ project.tryRemoveFile(this.fileName);
18612
18618
  new YamlFile(this.project, this.fileName, {
18613
18619
  obj: () => {
18614
18620
  const pnpmConfig = {};
@@ -31484,7 +31490,7 @@ var VERSION = {
31484
31490
  /**
31485
31491
  * Version of Projen to use.
31486
31492
  */
31487
- PROJEN_VERSION: "0.101.6",
31493
+ PROJEN_VERSION: "0.101.17",
31488
31494
  /**
31489
31495
  * Version of `actions/setup-node` to use in GitHub workflows.
31490
31496
  * Tracks the version projen currently emits (see node_modules/projen/lib/github/workflows.js).