@codedrifters/configulator 0.0.454 → 0.0.456
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 +706 -1
- package/lib/index.d.ts +706 -1
- package/lib/index.js +189 -1
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +189 -1
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -9935,6 +9935,20 @@ declare class AwsDeploymentTarget extends Component {
|
|
|
9935
9935
|
*
|
|
9936
9936
|
****************************************************************************/
|
|
9937
9937
|
private configureWatchTask;
|
|
9938
|
+
/*****************************************************************************
|
|
9939
|
+
*
|
|
9940
|
+
* Destroy Tasks
|
|
9941
|
+
*
|
|
9942
|
+
* - If local deploy, add a destroy task.
|
|
9943
|
+
*
|
|
9944
|
+
* Mirrors the deploy task family so `destroyDefaults`, per-account
|
|
9945
|
+
* `destroy` overrides, and a target's `cdkOptions.destroy` all reach a
|
|
9946
|
+
* rendered command. Projen's generic `destroy` passthrough is deliberately
|
|
9947
|
+
* left intact as an ad-hoc escape hatch — unlike the generic `deploy` and
|
|
9948
|
+
* `watch` tasks, it is not reset to a disabled stub.
|
|
9949
|
+
*
|
|
9950
|
+
****************************************************************************/
|
|
9951
|
+
private configureDestroyTask;
|
|
9938
9952
|
}
|
|
9939
9953
|
|
|
9940
9954
|
/*******************************************************************************
|
|
@@ -11955,6 +11969,107 @@ declare const MINIMUM_RELEASE_AGE: {
|
|
|
11955
11969
|
SIX_DAYS: number;
|
|
11956
11970
|
ONE_WEEK: number;
|
|
11957
11971
|
};
|
|
11972
|
+
/**
|
|
11973
|
+
* Platform selectors used by `supportedArchitectures` to widen the set of
|
|
11974
|
+
* optional dependencies pnpm downloads beyond the current host.
|
|
11975
|
+
*
|
|
11976
|
+
* See: https://pnpm.io/settings#supportedarchitectures
|
|
11977
|
+
*/
|
|
11978
|
+
interface PnpmSupportedArchitectures {
|
|
11979
|
+
/**
|
|
11980
|
+
* Operating systems to fetch optional dependencies for, e.g.
|
|
11981
|
+
* `["current", "win32", "linux"]`.
|
|
11982
|
+
*/
|
|
11983
|
+
readonly os?: Array<string>;
|
|
11984
|
+
/**
|
|
11985
|
+
* CPU architectures to fetch optional dependencies for, e.g.
|
|
11986
|
+
* `["current", "x64", "arm64"]`.
|
|
11987
|
+
*/
|
|
11988
|
+
readonly cpu?: Array<string>;
|
|
11989
|
+
/**
|
|
11990
|
+
* libc implementations to fetch optional dependencies for, e.g.
|
|
11991
|
+
* `["current", "glibc", "musl"]`.
|
|
11992
|
+
*/
|
|
11993
|
+
readonly libc?: Array<string>;
|
|
11994
|
+
}
|
|
11995
|
+
/**
|
|
11996
|
+
* Rules that relax pnpm's peer-dependency diagnostics.
|
|
11997
|
+
*
|
|
11998
|
+
* See: https://pnpm.io/settings#peerdependencyrules
|
|
11999
|
+
*/
|
|
12000
|
+
interface PnpmPeerDependencyRules {
|
|
12001
|
+
/**
|
|
12002
|
+
* Peer dependency names (glob patterns allowed) whose "missing peer"
|
|
12003
|
+
* warnings are suppressed.
|
|
12004
|
+
*/
|
|
12005
|
+
readonly ignoreMissing?: Array<string>;
|
|
12006
|
+
/**
|
|
12007
|
+
* Peer dependency names (glob patterns allowed) that may resolve to any
|
|
12008
|
+
* version without a version-mismatch warning.
|
|
12009
|
+
*/
|
|
12010
|
+
readonly allowAny?: Array<string>;
|
|
12011
|
+
/**
|
|
12012
|
+
* Additional version ranges accepted for a peer dependency, keyed by
|
|
12013
|
+
* package name or by `parent>child` selector.
|
|
12014
|
+
*/
|
|
12015
|
+
readonly allowedVersions?: {
|
|
12016
|
+
[selector: string]: string;
|
|
12017
|
+
};
|
|
12018
|
+
}
|
|
12019
|
+
/**
|
|
12020
|
+
* pnpm 11's `update` block, controlling `pnpm update` behavior.
|
|
12021
|
+
*
|
|
12022
|
+
* Supersedes the deprecated `updateConfig` block. When both are set, pnpm
|
|
12023
|
+
* ignores `updateConfig` in favor of `update` and emits a warning — so
|
|
12024
|
+
* configulator emits only the winning key.
|
|
12025
|
+
*
|
|
12026
|
+
* See: https://pnpm.io/settings#update
|
|
12027
|
+
*/
|
|
12028
|
+
interface PnpmUpdateSettings {
|
|
12029
|
+
/**
|
|
12030
|
+
* Packages excluded from `pnpm update`. Replaces the deprecated
|
|
12031
|
+
* `updateConfig.ignoreDependencies`.
|
|
12032
|
+
*/
|
|
12033
|
+
readonly ignoreDeps?: Array<string>;
|
|
12034
|
+
/**
|
|
12035
|
+
* Whether `pnpm update` writes a changeset file.
|
|
12036
|
+
*/
|
|
12037
|
+
readonly changeset?: boolean;
|
|
12038
|
+
/**
|
|
12039
|
+
* Whether `pnpm update` also updates GitHub Actions workflow pins.
|
|
12040
|
+
*/
|
|
12041
|
+
readonly githubActions?: boolean;
|
|
12042
|
+
/**
|
|
12043
|
+
* GitHub server used when resolving GitHub Actions updates.
|
|
12044
|
+
*/
|
|
12045
|
+
readonly githubActionsServer?: string;
|
|
12046
|
+
}
|
|
12047
|
+
/**
|
|
12048
|
+
* The deprecated `updateConfig` block.
|
|
12049
|
+
*
|
|
12050
|
+
* @deprecated Superseded by `update` in pnpm 11. Retained so consumers on
|
|
12051
|
+
* older pnpm majors keep a typed route; prefer `update`.
|
|
12052
|
+
*
|
|
12053
|
+
* See: https://pnpm.io/settings#updateconfig
|
|
12054
|
+
*/
|
|
12055
|
+
interface PnpmUpdateConfigSettings {
|
|
12056
|
+
/**
|
|
12057
|
+
* Packages excluded from `pnpm update`.
|
|
12058
|
+
*/
|
|
12059
|
+
readonly ignoreDependencies?: Array<string>;
|
|
12060
|
+
/**
|
|
12061
|
+
* Whether `pnpm update` writes a changeset file.
|
|
12062
|
+
*/
|
|
12063
|
+
readonly changeset?: boolean;
|
|
12064
|
+
/**
|
|
12065
|
+
* Whether `pnpm update` also updates GitHub Actions workflow pins.
|
|
12066
|
+
*/
|
|
12067
|
+
readonly githubActions?: boolean;
|
|
12068
|
+
/**
|
|
12069
|
+
* GitHub server used when resolving GitHub Actions updates.
|
|
12070
|
+
*/
|
|
12071
|
+
readonly githubActionsServer?: string;
|
|
12072
|
+
}
|
|
11958
12073
|
interface PnpmWorkspaceOptions {
|
|
11959
12074
|
/**
|
|
11960
12075
|
* Filename for the pnpm workspace file. This should probably never change.
|
|
@@ -12221,7 +12336,570 @@ interface PnpmWorkspaceOptions {
|
|
|
12221
12336
|
* @see https://pnpm.io/settings#minimumreleaseageignoremissingtime
|
|
12222
12337
|
*/
|
|
12223
12338
|
readonly minimumReleaseAgeIgnoreMissingTime?: boolean;
|
|
12339
|
+
/*****************************************************************************
|
|
12340
|
+
*
|
|
12341
|
+
* DEPENDENCY GRAPH
|
|
12342
|
+
*
|
|
12343
|
+
****************************************************************************/
|
|
12344
|
+
/**
|
|
12345
|
+
* Version overrides applied to any dependency in the graph, including
|
|
12346
|
+
* transitive ones that no direct dependency would otherwise let you pin.
|
|
12347
|
+
*
|
|
12348
|
+
* Keys accept pnpm's full selector syntax — a bare name (`"foo"`), a
|
|
12349
|
+
* range-scoped selector (`"@smithy/types@^4"`), or a parent-scoped
|
|
12350
|
+
* selector (`"parent>child"`). Rendered verbatim.
|
|
12351
|
+
*
|
|
12352
|
+
* ```ts
|
|
12353
|
+
* overrides: {
|
|
12354
|
+
* "@smithy/types@^4": "4.17.2",
|
|
12355
|
+
* "cli-table3>colors": "^1.4.0",
|
|
12356
|
+
* }
|
|
12357
|
+
* ```
|
|
12358
|
+
*
|
|
12359
|
+
* @default undefined (key omitted)
|
|
12360
|
+
*
|
|
12361
|
+
* @see https://pnpm.io/settings#overrides
|
|
12362
|
+
*/
|
|
12363
|
+
readonly overrides?: {
|
|
12364
|
+
[selector: string]: string;
|
|
12365
|
+
};
|
|
12366
|
+
/**
|
|
12367
|
+
* Extra fields merged into a third-party package's manifest at install
|
|
12368
|
+
* time — the supported way to repair a dependency that ships an incorrect
|
|
12369
|
+
* or incomplete `package.json` without patching it.
|
|
12370
|
+
*
|
|
12371
|
+
* @default undefined (key omitted)
|
|
12372
|
+
*
|
|
12373
|
+
* @see https://pnpm.io/settings#packageextensions
|
|
12374
|
+
*/
|
|
12375
|
+
readonly packageExtensions?: {
|
|
12376
|
+
[packageSelector: string]: unknown;
|
|
12377
|
+
};
|
|
12378
|
+
/**
|
|
12379
|
+
* Patch files applied to dependencies, keyed by `name@version` and valued
|
|
12380
|
+
* with a repo-relative path to the `.patch` file.
|
|
12381
|
+
*
|
|
12382
|
+
* @default undefined (key omitted)
|
|
12383
|
+
*
|
|
12384
|
+
* @see https://pnpm.io/settings#patcheddependencies
|
|
12385
|
+
*/
|
|
12386
|
+
readonly patchedDependencies?: {
|
|
12387
|
+
[packageAndVersion: string]: string;
|
|
12388
|
+
};
|
|
12389
|
+
/**
|
|
12390
|
+
* Directory that `pnpm patch-commit` writes patch files into.
|
|
12391
|
+
*
|
|
12392
|
+
* @default undefined (key omitted; pnpm defaults to "patches")
|
|
12393
|
+
*
|
|
12394
|
+
* @see https://pnpm.io/settings#patchesdir
|
|
12395
|
+
*/
|
|
12396
|
+
readonly patchesDir?: string;
|
|
12397
|
+
/**
|
|
12398
|
+
* Whether an entry in `patchedDependencies` that matches no installed
|
|
12399
|
+
* package is tolerated instead of failing the install.
|
|
12400
|
+
*
|
|
12401
|
+
* @default undefined (key omitted; pnpm uses its built-in default)
|
|
12402
|
+
*
|
|
12403
|
+
* @see https://pnpm.io/settings#allowunusedpatches
|
|
12404
|
+
*/
|
|
12405
|
+
readonly allowUnusedPatches?: boolean;
|
|
12406
|
+
/**
|
|
12407
|
+
* Deprecation warnings to silence, keyed by package name (or
|
|
12408
|
+
* `name@range`) and valued with the version range whose deprecation
|
|
12409
|
+
* message is suppressed.
|
|
12410
|
+
*
|
|
12411
|
+
* @default undefined (key omitted)
|
|
12412
|
+
*
|
|
12413
|
+
* @see https://pnpm.io/settings#alloweddeprecatedversions
|
|
12414
|
+
*/
|
|
12415
|
+
readonly allowedDeprecatedVersions?: {
|
|
12416
|
+
[packageName: string]: string;
|
|
12417
|
+
};
|
|
12418
|
+
/**
|
|
12419
|
+
* Packages whose lifecycle scripts never run, regardless of the
|
|
12420
|
+
* `allowBuilds` map.
|
|
12421
|
+
*
|
|
12422
|
+
* Composes with the `allowBuilds` / legacy built-dependencies hybrid
|
|
12423
|
+
* emission: every entry is merged into the emitted `allowBuilds` map as
|
|
12424
|
+
* `false` (so the derived legacy allow/deny arrays stay consistent), and
|
|
12425
|
+
* the verbatim `neverBuiltDependencies` array is emitted alongside.
|
|
12426
|
+
* Precedence runs `onlyBuiltDependencies` → `ignoredBuiltDependencies` →
|
|
12427
|
+
* `neverBuiltDependencies` → explicit `allowBuilds`, so an explicit
|
|
12428
|
+
* `allowBuilds` entry still wins.
|
|
12429
|
+
*
|
|
12430
|
+
* @default undefined (key omitted)
|
|
12431
|
+
*
|
|
12432
|
+
* @see https://pnpm.io/settings#neverbuiltdependencies
|
|
12433
|
+
*/
|
|
12434
|
+
readonly neverBuiltDependencies?: Array<string>;
|
|
12435
|
+
/**
|
|
12436
|
+
* Optional dependencies that are never installed, by package name.
|
|
12437
|
+
*
|
|
12438
|
+
* @default undefined (key omitted)
|
|
12439
|
+
*
|
|
12440
|
+
* @see https://pnpm.io/settings#ignoredoptionaldependencies
|
|
12441
|
+
*/
|
|
12442
|
+
readonly ignoredOptionalDependencies?: Array<string>;
|
|
12443
|
+
/**
|
|
12444
|
+
* Platforms to fetch optional dependencies for beyond the current host —
|
|
12445
|
+
* the usual way to make a lockfile usable across CI runners and developer
|
|
12446
|
+
* machines with different OS/CPU/libc combinations.
|
|
12447
|
+
*
|
|
12448
|
+
* @default undefined (key omitted)
|
|
12449
|
+
*
|
|
12450
|
+
* @see https://pnpm.io/settings#supportedarchitectures
|
|
12451
|
+
*/
|
|
12452
|
+
readonly supportedArchitectures?: PnpmSupportedArchitectures;
|
|
12453
|
+
/**
|
|
12454
|
+
* Packages installed before anything else and allowed to contribute
|
|
12455
|
+
* configuration (hooks, patches, catalogs) to the workspace, keyed by
|
|
12456
|
+
* package name and valued with `version+integrity`.
|
|
12457
|
+
*
|
|
12458
|
+
* @default undefined (key omitted)
|
|
12459
|
+
*
|
|
12460
|
+
* @see https://pnpm.io/settings#configdependencies
|
|
12461
|
+
*/
|
|
12462
|
+
readonly configDependencies?: {
|
|
12463
|
+
[packageName: string]: string;
|
|
12464
|
+
};
|
|
12465
|
+
/**
|
|
12466
|
+
* How pnpm picks a version when several satisfy a range.
|
|
12467
|
+
*
|
|
12468
|
+
* @default undefined (key omitted; pnpm defaults to "highest")
|
|
12469
|
+
*
|
|
12470
|
+
* @see https://pnpm.io/settings#resolutionmode
|
|
12471
|
+
*/
|
|
12472
|
+
readonly resolutionMode?: "highest" | "time-based" | "lowest-direct";
|
|
12473
|
+
/**
|
|
12474
|
+
* Range prefix written for newly added dependencies, e.g. `"^"` or `"~"`.
|
|
12475
|
+
*
|
|
12476
|
+
* @default undefined (key omitted)
|
|
12477
|
+
*
|
|
12478
|
+
* @see https://pnpm.io/settings#saveprefix
|
|
12479
|
+
*/
|
|
12480
|
+
readonly savePrefix?: string;
|
|
12481
|
+
/**
|
|
12482
|
+
* Whether newly added dependencies are pinned to an exact version.
|
|
12483
|
+
*
|
|
12484
|
+
* @default undefined (key omitted)
|
|
12485
|
+
*
|
|
12486
|
+
* @see https://pnpm.io/settings#saveexact
|
|
12487
|
+
*/
|
|
12488
|
+
readonly saveExact?: boolean;
|
|
12489
|
+
/*****************************************************************************
|
|
12490
|
+
*
|
|
12491
|
+
* SUPPLY-CHAIN POSTURE
|
|
12492
|
+
*
|
|
12493
|
+
* Extends the `minimumReleaseAge` stance above.
|
|
12494
|
+
*
|
|
12495
|
+
****************************************************************************/
|
|
12496
|
+
/**
|
|
12497
|
+
* Whether pnpm rejects a package whose publish-trust level has regressed
|
|
12498
|
+
* (e.g. a package previously published with provenance that no longer is).
|
|
12499
|
+
*
|
|
12500
|
+
* @default undefined (key omitted; pnpm uses its built-in default)
|
|
12501
|
+
*
|
|
12502
|
+
* @see https://pnpm.io/settings#trustpolicy
|
|
12503
|
+
*/
|
|
12504
|
+
readonly trustPolicy?: "off" | "no-downgrade";
|
|
12505
|
+
/**
|
|
12506
|
+
* Packages exempt from `trustPolicy`, as `name` or `name@range` selectors.
|
|
12507
|
+
*
|
|
12508
|
+
* @default undefined (key omitted)
|
|
12509
|
+
*
|
|
12510
|
+
* @see https://pnpm.io/settings#trustpolicyexclude
|
|
12511
|
+
*/
|
|
12512
|
+
readonly trustPolicyExclude?: Array<string>;
|
|
12513
|
+
/**
|
|
12514
|
+
* Unix timestamp (seconds) after which `trustPolicy` stops applying, used
|
|
12515
|
+
* to grandfather in packages published before a cutoff.
|
|
12516
|
+
*
|
|
12517
|
+
* @default undefined (key omitted)
|
|
12518
|
+
*
|
|
12519
|
+
* @see https://pnpm.io/settings#trustpolicyignoreafter
|
|
12520
|
+
*/
|
|
12521
|
+
readonly trustPolicyIgnoreAfter?: number;
|
|
12522
|
+
/**
|
|
12523
|
+
* Whether transitive dependencies resolved through exotic (non-registry)
|
|
12524
|
+
* specifiers — git, tarball URL, local path — are rejected. Direct
|
|
12525
|
+
* dependencies are unaffected.
|
|
12526
|
+
*
|
|
12527
|
+
* @default undefined (key omitted; pnpm 11 defaults to true)
|
|
12528
|
+
*
|
|
12529
|
+
* @see https://pnpm.io/settings#blockexoticsubdeps
|
|
12530
|
+
*/
|
|
12531
|
+
readonly blockExoticSubdeps?: boolean;
|
|
12532
|
+
/**
|
|
12533
|
+
* Whether `minimumReleaseAgeExclude` entries are pruned to those actually
|
|
12534
|
+
* resolved in the lockfile.
|
|
12535
|
+
*
|
|
12536
|
+
* @default undefined (key omitted; pnpm defaults to false)
|
|
12537
|
+
*
|
|
12538
|
+
* @see https://pnpm.io/settings#minimumreleaseageexcludeprune
|
|
12539
|
+
*/
|
|
12540
|
+
readonly minimumReleaseAgeExcludePrune?: boolean;
|
|
12541
|
+
/*****************************************************************************
|
|
12542
|
+
*
|
|
12543
|
+
* PEER DEPENDENCIES
|
|
12544
|
+
*
|
|
12545
|
+
****************************************************************************/
|
|
12546
|
+
/**
|
|
12547
|
+
* Whether missing peer dependencies are installed automatically.
|
|
12548
|
+
*
|
|
12549
|
+
* @default undefined (key omitted)
|
|
12550
|
+
*
|
|
12551
|
+
* @see https://pnpm.io/settings#autoinstallpeers
|
|
12552
|
+
*/
|
|
12553
|
+
readonly autoInstallPeers?: boolean;
|
|
12554
|
+
/**
|
|
12555
|
+
* Whether an unresolved peer dependency fails the install.
|
|
12556
|
+
*
|
|
12557
|
+
* @default undefined (key omitted)
|
|
12558
|
+
*
|
|
12559
|
+
* @see https://pnpm.io/settings#strictpeerdependencies
|
|
12560
|
+
*/
|
|
12561
|
+
readonly strictPeerDependencies?: boolean;
|
|
12562
|
+
/**
|
|
12563
|
+
* Whether dependents are deduplicated when they resolve peers identically.
|
|
12564
|
+
*
|
|
12565
|
+
* @default undefined (key omitted)
|
|
12566
|
+
*
|
|
12567
|
+
* @see https://pnpm.io/settings#dedupepeerdependents
|
|
12568
|
+
*/
|
|
12569
|
+
readonly dedupePeerDependents?: boolean;
|
|
12570
|
+
/**
|
|
12571
|
+
* Whether peer dependencies may resolve from the workspace root's
|
|
12572
|
+
* dependencies.
|
|
12573
|
+
*
|
|
12574
|
+
* @default undefined (key omitted; pnpm 11 defaults to true)
|
|
12575
|
+
*
|
|
12576
|
+
* @see https://pnpm.io/settings#resolvepeersfromworkspaceroot
|
|
12577
|
+
*/
|
|
12578
|
+
readonly resolvePeersFromWorkspaceRoot?: boolean;
|
|
12579
|
+
/**
|
|
12580
|
+
* Rules that relax peer-dependency diagnostics for known-good mismatches.
|
|
12581
|
+
*
|
|
12582
|
+
* @default undefined (key omitted)
|
|
12583
|
+
*
|
|
12584
|
+
* @see https://pnpm.io/settings#peerdependencyrules
|
|
12585
|
+
*/
|
|
12586
|
+
readonly peerDependencyRules?: PnpmPeerDependencyRules;
|
|
12587
|
+
/*****************************************************************************
|
|
12588
|
+
*
|
|
12589
|
+
* WORKSPACE SEMANTICS
|
|
12590
|
+
*
|
|
12591
|
+
****************************************************************************/
|
|
12592
|
+
/**
|
|
12593
|
+
* Whether dependencies satisfied by a workspace package link to it rather
|
|
12594
|
+
* than resolving from the registry. `"deep"` also links transitively.
|
|
12595
|
+
*
|
|
12596
|
+
* @default undefined (key omitted)
|
|
12597
|
+
*
|
|
12598
|
+
* @see https://pnpm.io/settings#linkworkspacepackages
|
|
12599
|
+
*/
|
|
12600
|
+
readonly linkWorkspacePackages?: boolean | "deep";
|
|
12601
|
+
/**
|
|
12602
|
+
* Whether a workspace package is preferred over a registry version even
|
|
12603
|
+
* when the registry has a higher matching version.
|
|
12604
|
+
*
|
|
12605
|
+
* @default undefined (key omitted)
|
|
12606
|
+
*
|
|
12607
|
+
* @see https://pnpm.io/settings#preferworkspacepackages
|
|
12608
|
+
*/
|
|
12609
|
+
readonly preferWorkspacePackages?: boolean;
|
|
12610
|
+
/**
|
|
12611
|
+
* Whether workspace dependencies are hard-linked into the dependent's
|
|
12612
|
+
* `node_modules` instead of symlinked.
|
|
12613
|
+
*
|
|
12614
|
+
* @default undefined (key omitted)
|
|
12615
|
+
*
|
|
12616
|
+
* @see https://pnpm.io/settings#injectworkspacepackages
|
|
12617
|
+
*/
|
|
12618
|
+
readonly injectWorkspacePackages?: boolean;
|
|
12619
|
+
/**
|
|
12620
|
+
* Whether injected workspace dependencies are deduplicated.
|
|
12621
|
+
*
|
|
12622
|
+
* @default undefined (key omitted)
|
|
12623
|
+
*
|
|
12624
|
+
* @see https://pnpm.io/settings#dedupeinjecteddeps
|
|
12625
|
+
*/
|
|
12626
|
+
readonly dedupeInjectedDeps?: boolean;
|
|
12627
|
+
/**
|
|
12628
|
+
* Script names after which injected workspace dependencies are re-synced.
|
|
12629
|
+
*
|
|
12630
|
+
* @default undefined (key omitted)
|
|
12631
|
+
*
|
|
12632
|
+
* @see https://pnpm.io/settings#syncinjecteddepsafterscripts
|
|
12633
|
+
*/
|
|
12634
|
+
readonly syncInjectedDepsAfterScripts?: Array<string>;
|
|
12635
|
+
/**
|
|
12636
|
+
* How workspace dependencies are written to `package.json`. `"rolling"`
|
|
12637
|
+
* writes `workspace:^`, `true` writes `workspace:<version>`.
|
|
12638
|
+
*
|
|
12639
|
+
* @default undefined (key omitted; pnpm defaults to "rolling")
|
|
12640
|
+
*
|
|
12641
|
+
* @see https://pnpm.io/settings#saveworkspaceprotocol
|
|
12642
|
+
*/
|
|
12643
|
+
readonly saveWorkspaceProtocol?: boolean | "rolling";
|
|
12644
|
+
/**
|
|
12645
|
+
* Whether recursive commands include the workspace root project.
|
|
12646
|
+
*
|
|
12647
|
+
* @default undefined (key omitted)
|
|
12648
|
+
*
|
|
12649
|
+
* @see https://pnpm.io/settings#includeworkspaceroot
|
|
12650
|
+
*/
|
|
12651
|
+
readonly includeWorkspaceRoot?: boolean;
|
|
12652
|
+
/**
|
|
12653
|
+
* Whether the workspace uses a single shared lockfile at the root.
|
|
12654
|
+
*
|
|
12655
|
+
* @default undefined (key omitted; pnpm defaults to true)
|
|
12656
|
+
*
|
|
12657
|
+
* @see https://pnpm.io/settings#sharedworkspacelockfile
|
|
12658
|
+
*/
|
|
12659
|
+
readonly sharedWorkspaceLockfile?: boolean;
|
|
12660
|
+
/**
|
|
12661
|
+
* Whether a cyclic dependency between workspace packages fails the install.
|
|
12662
|
+
*
|
|
12663
|
+
* @default undefined (key omitted)
|
|
12664
|
+
*
|
|
12665
|
+
* @see https://pnpm.io/settings#disallowworkspacecycles
|
|
12666
|
+
*/
|
|
12667
|
+
readonly disallowWorkspaceCycles?: boolean;
|
|
12668
|
+
/**
|
|
12669
|
+
* Whether workspace packages are hoisted to the root `node_modules`.
|
|
12670
|
+
*
|
|
12671
|
+
* @default undefined (key omitted)
|
|
12672
|
+
*
|
|
12673
|
+
* @see https://pnpm.io/settings#hoistworkspacepackages
|
|
12674
|
+
*/
|
|
12675
|
+
readonly hoistWorkspacePackages?: boolean;
|
|
12676
|
+
/**
|
|
12677
|
+
* Scripts every workspace package must define; a missing script fails the
|
|
12678
|
+
* install.
|
|
12679
|
+
*
|
|
12680
|
+
* @default undefined (key omitted)
|
|
12681
|
+
*
|
|
12682
|
+
* @see https://pnpm.io/settings#requiredscripts
|
|
12683
|
+
*/
|
|
12684
|
+
readonly requiredScripts?: Array<string>;
|
|
12685
|
+
/*****************************************************************************
|
|
12686
|
+
*
|
|
12687
|
+
* LAYOUT AND LOCKFILE
|
|
12688
|
+
*
|
|
12689
|
+
****************************************************************************/
|
|
12690
|
+
/**
|
|
12691
|
+
* How `node_modules` is laid out — pnpm's symlinked store (`"isolated"`),
|
|
12692
|
+
* a flat npm-style tree (`"hoisted"`), or Plug'n'Play (`"pnp"`).
|
|
12693
|
+
*
|
|
12694
|
+
* @default undefined (key omitted; pnpm defaults to "isolated")
|
|
12695
|
+
*
|
|
12696
|
+
* @see https://pnpm.io/settings#nodelinker
|
|
12697
|
+
*/
|
|
12698
|
+
readonly nodeLinker?: "isolated" | "hoisted" | "pnp";
|
|
12699
|
+
/**
|
|
12700
|
+
* Glob patterns hoisted into the hidden `node_modules/.pnpm/node_modules`
|
|
12701
|
+
* directory.
|
|
12702
|
+
*
|
|
12703
|
+
* @default undefined (key omitted)
|
|
12704
|
+
*
|
|
12705
|
+
* @see https://pnpm.io/settings#hoistpattern
|
|
12706
|
+
*/
|
|
12707
|
+
readonly hoistPattern?: Array<string>;
|
|
12708
|
+
/**
|
|
12709
|
+
* Glob patterns hoisted all the way to the root `node_modules`, making
|
|
12710
|
+
* them importable by any package.
|
|
12711
|
+
*
|
|
12712
|
+
* @default undefined (key omitted)
|
|
12713
|
+
*
|
|
12714
|
+
* @see https://pnpm.io/settings#publichoistpattern
|
|
12715
|
+
*/
|
|
12716
|
+
readonly publicHoistPattern?: Array<string>;
|
|
12717
|
+
/**
|
|
12718
|
+
* Whether every dependency is hoisted to the root `node_modules`,
|
|
12719
|
+
* reproducing npm's flat layout.
|
|
12720
|
+
*
|
|
12721
|
+
* @default undefined (key omitted)
|
|
12722
|
+
*
|
|
12723
|
+
* @see https://pnpm.io/settings#shamefullyhoist
|
|
12724
|
+
*/
|
|
12725
|
+
readonly shamefullyHoist?: boolean;
|
|
12726
|
+
/**
|
|
12727
|
+
* Whether an up-to-date lockfile short-circuits resolution.
|
|
12728
|
+
*
|
|
12729
|
+
* @default undefined (key omitted; pnpm defaults to true)
|
|
12730
|
+
*
|
|
12731
|
+
* @see https://pnpm.io/settings#preferfrozenlockfile
|
|
12732
|
+
*/
|
|
12733
|
+
readonly preferFrozenLockfile?: boolean;
|
|
12734
|
+
/**
|
|
12735
|
+
* Maximum length of the peer-resolution suffix in virtual store directory
|
|
12736
|
+
* names, lowered when Windows path limits bite.
|
|
12737
|
+
*
|
|
12738
|
+
* @default undefined (key omitted)
|
|
12739
|
+
*
|
|
12740
|
+
* @see https://pnpm.io/settings#peerssuffixmaxlength
|
|
12741
|
+
*/
|
|
12742
|
+
readonly peersSuffixMaxLength?: number;
|
|
12743
|
+
/*****************************************************************************
|
|
12744
|
+
*
|
|
12745
|
+
* SCRIPTS, ENGINES, PUBLISH
|
|
12746
|
+
*
|
|
12747
|
+
****************************************************************************/
|
|
12748
|
+
/**
|
|
12749
|
+
* Whether `pre` and `post` script hooks run around a named script.
|
|
12750
|
+
*
|
|
12751
|
+
* @default undefined (key omitted)
|
|
12752
|
+
*
|
|
12753
|
+
* @see https://pnpm.io/settings#enableprepostscripts
|
|
12754
|
+
*/
|
|
12755
|
+
readonly enablePrePostScripts?: boolean;
|
|
12756
|
+
/**
|
|
12757
|
+
* Value of `NODE_OPTIONS` for lifecycle scripts, e.g.
|
|
12758
|
+
* `"--max-old-space-size=4096"`.
|
|
12759
|
+
*
|
|
12760
|
+
* @default undefined (key omitted)
|
|
12761
|
+
*
|
|
12762
|
+
* @see https://pnpm.io/settings#nodeoptions
|
|
12763
|
+
*/
|
|
12764
|
+
readonly nodeOptions?: string;
|
|
12765
|
+
/**
|
|
12766
|
+
* Whether a package whose `engines` field excludes the running Node
|
|
12767
|
+
* version fails the install.
|
|
12768
|
+
*
|
|
12769
|
+
* @default undefined (key omitted)
|
|
12770
|
+
*
|
|
12771
|
+
* @see https://pnpm.io/settings#enginestrict
|
|
12772
|
+
*/
|
|
12773
|
+
readonly engineStrict?: boolean;
|
|
12774
|
+
/**
|
|
12775
|
+
* `pnpm update` behavior. Supersedes `updateConfig`.
|
|
12776
|
+
*
|
|
12777
|
+
* When both `update` and `updateConfig` are supplied, `update` wins and
|
|
12778
|
+
* only `update` is emitted — pnpm warns and ignores `updateConfig` when
|
|
12779
|
+
* it sees both keys, so emitting both would produce a warning on every
|
|
12780
|
+
* install.
|
|
12781
|
+
*
|
|
12782
|
+
* @default undefined (key omitted)
|
|
12783
|
+
*
|
|
12784
|
+
* @see https://pnpm.io/settings#update
|
|
12785
|
+
*/
|
|
12786
|
+
readonly update?: PnpmUpdateSettings;
|
|
12787
|
+
/**
|
|
12788
|
+
* `pnpm update` behavior, in the pre-pnpm-11 spelling.
|
|
12789
|
+
*
|
|
12790
|
+
* @deprecated Superseded by `update` in pnpm 11. Supplying both emits only
|
|
12791
|
+
* `update`. Prefer `update` in new configs.
|
|
12792
|
+
*
|
|
12793
|
+
* @default undefined (key omitted)
|
|
12794
|
+
*
|
|
12795
|
+
* @see https://pnpm.io/settings#updateconfig
|
|
12796
|
+
*/
|
|
12797
|
+
readonly updateConfig?: PnpmUpdateConfigSettings;
|
|
12798
|
+
/**
|
|
12799
|
+
* Whether `pnpm publish` runs its git working-tree and branch checks.
|
|
12800
|
+
*
|
|
12801
|
+
* @default undefined (key omitted; pnpm defaults to true)
|
|
12802
|
+
*
|
|
12803
|
+
* @see https://pnpm.io/settings#gitchecks
|
|
12804
|
+
*/
|
|
12805
|
+
readonly gitChecks?: boolean;
|
|
12806
|
+
/**
|
|
12807
|
+
* Branch `pnpm publish` is allowed to publish from.
|
|
12808
|
+
*
|
|
12809
|
+
* @default undefined (key omitted)
|
|
12810
|
+
*
|
|
12811
|
+
* @see https://pnpm.io/settings#publishbranch
|
|
12812
|
+
*/
|
|
12813
|
+
readonly publishBranch?: string;
|
|
12814
|
+
/**
|
|
12815
|
+
* Whether `pnpm publish` attaches npm provenance attestations.
|
|
12816
|
+
*
|
|
12817
|
+
* @default undefined (key omitted)
|
|
12818
|
+
*
|
|
12819
|
+
* @see https://pnpm.io/settings#provenance
|
|
12820
|
+
*/
|
|
12821
|
+
readonly provenance?: boolean;
|
|
12822
|
+
/**
|
|
12823
|
+
* Whether the README is embedded in the published package metadata.
|
|
12824
|
+
*
|
|
12825
|
+
* @default undefined (key omitted)
|
|
12826
|
+
*
|
|
12827
|
+
* @see https://pnpm.io/settings#embedreadme
|
|
12828
|
+
*/
|
|
12829
|
+
readonly embedReadme?: boolean;
|
|
12830
|
+
/*****************************************************************************
|
|
12831
|
+
*
|
|
12832
|
+
* CATALOG MAINTENANCE
|
|
12833
|
+
*
|
|
12834
|
+
****************************************************************************/
|
|
12835
|
+
/**
|
|
12836
|
+
* Whether pnpm prunes unused catalog entries from `pnpm-workspace.yaml`
|
|
12837
|
+
* during install. This is pnpm's current spelling for what
|
|
12838
|
+
* `cleanupUnusedCatalogs` configures.
|
|
12839
|
+
*
|
|
12840
|
+
* When both are supplied, `catalogPrune` wins and only `catalogPrune` is
|
|
12841
|
+
* emitted, matching pnpm's own `catalogPrune ??= cleanupUnusedCatalogs`
|
|
12842
|
+
* precedence. When only `cleanupUnusedCatalogs` is supplied, that key is
|
|
12843
|
+
* emitted unchanged so consumers on older pnpm majors keep working.
|
|
12844
|
+
*
|
|
12845
|
+
* @default undefined (key omitted; pnpm defaults to false)
|
|
12846
|
+
*
|
|
12847
|
+
* @see https://pnpm.io/settings#catalogprune
|
|
12848
|
+
*/
|
|
12849
|
+
readonly catalogPrune?: boolean;
|
|
12850
|
+
/*****************************************************************************
|
|
12851
|
+
*
|
|
12852
|
+
* PASSTHROUGH
|
|
12853
|
+
*
|
|
12854
|
+
****************************************************************************/
|
|
12855
|
+
/**
|
|
12856
|
+
* Arbitrary pnpm settings rendered verbatim as top-level keys in the
|
|
12857
|
+
* generated `pnpm-workspace.yaml`.
|
|
12858
|
+
*
|
|
12859
|
+
* This is the escape hatch for every setting configulator does not type —
|
|
12860
|
+
* per-user / per-machine / CI-environment settings that are deliberately
|
|
12861
|
+
* left untyped (proxies and TLS, fetch and retry tuning, store and cache
|
|
12862
|
+
* paths, CLI cosmetics, registry and auth settings), settings added by
|
|
12863
|
+
* future pnpm releases, and the handful of settings that do not exist in
|
|
12864
|
+
* the pnpm version this package targets.
|
|
12865
|
+
*
|
|
12866
|
+
* ```ts
|
|
12867
|
+
* additionalSettings: {
|
|
12868
|
+
* networkConcurrency: 8,
|
|
12869
|
+
* storeDir: "/mnt/pnpm-store",
|
|
12870
|
+
* }
|
|
12871
|
+
* ```
|
|
12872
|
+
*
|
|
12873
|
+
* A key that collides with a typed field or with a structural key
|
|
12874
|
+
* (`packages`, `catalog`, `catalogs`) throws at synth, naming the typed
|
|
12875
|
+
* option to use instead.
|
|
12876
|
+
*
|
|
12877
|
+
* @default undefined (no additional keys)
|
|
12878
|
+
*
|
|
12879
|
+
* @see https://pnpm.io/settings
|
|
12880
|
+
*/
|
|
12881
|
+
readonly additionalSettings?: {
|
|
12882
|
+
[settingName: string]: unknown;
|
|
12883
|
+
};
|
|
12224
12884
|
}
|
|
12885
|
+
/**
|
|
12886
|
+
* Curated settings that render verbatim under their own name whenever the
|
|
12887
|
+
* consumer supplies a value.
|
|
12888
|
+
*
|
|
12889
|
+
* Declaration order here is emission order in the generated YAML, so the
|
|
12890
|
+
* output stays deterministic across synths. Every entry is verified to exist
|
|
12891
|
+
* in the pnpm version this package targets.
|
|
12892
|
+
*
|
|
12893
|
+
* Settings needing bespoke handling are deliberately absent:
|
|
12894
|
+
* `neverBuiltDependencies` (merges into the `allowBuilds` map),
|
|
12895
|
+
* `catalogPrune` / `cleanupUnusedCatalogs`, and `update` / `updateConfig`
|
|
12896
|
+
* (deprecated-alias precedence pairs).
|
|
12897
|
+
*/
|
|
12898
|
+
declare const CURATED_SETTING_KEYS: readonly ["overrides", "packageExtensions", "patchedDependencies", "patchesDir", "allowUnusedPatches", "allowedDeprecatedVersions", "ignoredOptionalDependencies", "supportedArchitectures", "configDependencies", "resolutionMode", "savePrefix", "saveExact", "trustPolicy", "trustPolicyExclude", "trustPolicyIgnoreAfter", "blockExoticSubdeps", "minimumReleaseAgeExcludePrune", "autoInstallPeers", "strictPeerDependencies", "dedupePeerDependents", "resolvePeersFromWorkspaceRoot", "peerDependencyRules", "linkWorkspacePackages", "preferWorkspacePackages", "injectWorkspacePackages", "dedupeInjectedDeps", "syncInjectedDepsAfterScripts", "saveWorkspaceProtocol", "includeWorkspaceRoot", "sharedWorkspaceLockfile", "disallowWorkspaceCycles", "hoistWorkspacePackages", "requiredScripts", "nodeLinker", "hoistPattern", "publicHoistPattern", "shamefullyHoist", "preferFrozenLockfile", "peersSuffixMaxLength", "enablePrePostScripts", "nodeOptions", "engineStrict", "gitChecks", "publishBranch", "provenance", "embedReadme"];
|
|
12899
|
+
/**
|
|
12900
|
+
* A curated setting name.
|
|
12901
|
+
*/
|
|
12902
|
+
type PnpmCuratedSettingKey = (typeof CURATED_SETTING_KEYS)[number];
|
|
12225
12903
|
declare class PnpmWorkspace extends Component {
|
|
12226
12904
|
/**
|
|
12227
12905
|
* Get the pnpm workspace component of a project. If it does not exist,
|
|
@@ -12389,7 +13067,34 @@ declare class PnpmWorkspace extends Component {
|
|
|
12389
13067
|
* @see https://pnpm.io/settings#minimumreleaseageignoremissingtime
|
|
12390
13068
|
*/
|
|
12391
13069
|
minimumReleaseAgeIgnoreMissingTime?: boolean;
|
|
13070
|
+
/**
|
|
13071
|
+
* Values for every curated setting the consumer supplied, keyed by setting
|
|
13072
|
+
* name. A setting left undefined is absent from this record and therefore
|
|
13073
|
+
* omitted from the generated YAML, so consumers who configure nothing get
|
|
13074
|
+
* byte-identical output.
|
|
13075
|
+
*/
|
|
13076
|
+
private readonly curatedSettings;
|
|
13077
|
+
/**
|
|
13078
|
+
* Verbatim passthrough settings supplied via `additionalSettings`.
|
|
13079
|
+
*/
|
|
13080
|
+
private readonly additionalSettings;
|
|
12392
13081
|
constructor(project: Project, options?: PnpmWorkspaceOptions);
|
|
13082
|
+
/**
|
|
13083
|
+
* Read back a configured pnpm setting by name.
|
|
13084
|
+
*
|
|
13085
|
+
* Covers both tiers: curated settings added since the original typed
|
|
13086
|
+
* surface, and verbatim `additionalSettings` passthrough keys. Returns
|
|
13087
|
+
* `undefined` when the setting was not configured, which is the same
|
|
13088
|
+
* signal the emitter uses to omit the key from the generated YAML.
|
|
13089
|
+
*
|
|
13090
|
+
* The fifteen original options (`minimumReleaseAge`, `allowBuilds`,
|
|
13091
|
+
* `defaultCatalog`, and friends) remain available as public fields and are
|
|
13092
|
+
* not served by this accessor.
|
|
13093
|
+
*
|
|
13094
|
+
* @param settingName - The pnpm setting name, e.g. `"overrides"`.
|
|
13095
|
+
* @returns The configured value, or `undefined` when unset.
|
|
13096
|
+
*/
|
|
13097
|
+
setting(settingName: string): unknown;
|
|
12393
13098
|
}
|
|
12394
13099
|
/**
|
|
12395
13100
|
* @deprecated Use `MINIMUM_RELEASE_AGE` instead. This alias will be removed in a future major release.
|
|
@@ -15716,4 +16421,4 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
15716
16421
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
15717
16422
|
|
|
15718
16423
|
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, APPROVE_JOB_ID, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, ApplyWorkflow, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILD_ARTIFACT_NAME, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_PACKAGE_MANAGER, CDK_INIT_TEMPLATE, CDK_MIGRATE_FROM_SCAN, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CONVENTIONAL_COMMIT_TYPE_LABELS, CdkCli, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BASE_CONVENTIONS, DEFAULT_BUILD_POLICY, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_GITHUB_ISSUE_TYPE, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_ORCHESTRATOR_CONVENTIONS, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PATHS_EXEMPT_FROM_SIZE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIREMENT_CATEGORY_DIRS, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_RULE_CONVENTIONS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DEPLOY_APPROVALS, DEPLOY_GATE, DIFF_ARTIFACT_NAME, DIFF_NEW_STACK_MARKER, DIFF_OUTPUT_DIRECTORY, DIFF_PART_ARTIFACT_PREFIX, DIFF_REPORT_JOB_ID, DOCS_SYNC_AUDIT_SCHEMA_VERSION, DiffReportJob, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, ISSUE_TEMPLATES_GENERATED_SUFFIX, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PERMISSION_BACKUP_FILE, PHASE_LABEL_TYPE_MAP, PLAN_RUN_ID_INPUT, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, RequirementIssueTemplate, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALIDATE_PLAN_JOB_ID, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, WorkflowHomeRepository, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildGithubWorkflowBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildTurborepoBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkClosingKeywordsProcedure, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, collectIssueTemplateRecipeStubs, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubIssueTypeForTitle, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, issueTemplatesChildGlob, issueTemplatesGeneratedPath, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, nextRequirementIdProcedure, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkCliTelemetry, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiagnose, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkLsp, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkValidate, renderCdkWatch, renderCheckClosingKeywordsScript, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderDiffPartUploadStep, renderExtractApiProcedure, renderFocusSection, renderGithubIssueTypeSection, renderGithubIssueTypeSectionLines, renderHomeRepositoryCondition, renderIssueTemplateLabelsCheckerScript, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesGeneratedPage, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderIssueTypeAssignmentBlanket, renderIssueTypeAssignmentStep, renderMeetingTypesSection, renderNextRequirementIdProcedure, renderPhaseTypeInvariantSection, renderPhaseTypeInvariantShellHelpers, renderPlanValidationScript, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSetIssueTypeFallbackLines, renderSetupNode, renderSetupPnpm, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderTitlePrefixTypeBullets, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveApprovalGate, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveBuildPolicy, resolveEnvironmentGate, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeLabelForLabels, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typeLabelForPhaseLabel, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
15719
|
-
export type { ActionItemFilingConfig, ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApplyWorkflowAttachOptions, ApplyWorkflowContract, ApplyWorkflowOptions, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkCliTelemetryOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiagnoseOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitPackageManager, CdkInitTemplate, CdkListOptions, CdkLspOptions, CdkMetadataOptions, CdkMigrateFromScan, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkValidateOptions, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployApprovals, DeployDiffOptions, DeployGate, DeployWorkflowOptions, DeploymentMetadata, DiffReportJobAttachOptions, DiffReportTarget, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, GithubIssueType, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplateRecipeStub, IssueTemplatesConfig, IssueTypeAssignmentStepOptions, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoPnpmOptions, MonorepoProjectOptions, OrganizationMetadata, PhaseLabelTypeOutcome, PhaseLabelTypeResolution, PlanApplyOptions, PlanValidationScriptOptions, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewCiVerificationConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementBlockFields, RequirementCategoryDirsConfig, RequirementIssueTemplateOptions, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedBaseConventions, ResolvedBuildPolicy, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedOrchestratorConventions, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRuleConventions, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TurboRunContinue, TurboRunDryRun, TurboRunLogOrder, TurboRunLogPrefix, TurboRunOptions, TurboRunOutputLogs, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions, WorkflowHomeRepositoryOptions };
|
|
16424
|
+
export type { ActionItemFilingConfig, ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApplyWorkflowAttachOptions, ApplyWorkflowContract, ApplyWorkflowOptions, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkCliTelemetryOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiagnoseOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitPackageManager, CdkInitTemplate, CdkListOptions, CdkLspOptions, CdkMetadataOptions, CdkMigrateFromScan, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkValidateOptions, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployApprovals, DeployDiffOptions, DeployGate, DeployWorkflowOptions, DeploymentMetadata, DiffReportJobAttachOptions, DiffReportTarget, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, GithubIssueType, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplateRecipeStub, IssueTemplatesConfig, IssueTypeAssignmentStepOptions, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoPnpmOptions, MonorepoProjectOptions, OrganizationMetadata, PhaseLabelTypeOutcome, PhaseLabelTypeResolution, PlanApplyOptions, PlanValidationScriptOptions, PnpmCuratedSettingKey, PnpmPeerDependencyRules, PnpmSupportedArchitectures, PnpmUpdateConfigSettings, PnpmUpdateSettings, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewCiVerificationConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementBlockFields, RequirementCategoryDirsConfig, RequirementIssueTemplateOptions, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedBaseConventions, ResolvedBuildPolicy, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedOrchestratorConventions, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRuleConventions, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TurboRunContinue, TurboRunDryRun, TurboRunLogOrder, TurboRunLogPrefix, TurboRunOptions, TurboRunOutputLogs, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions, WorkflowHomeRepositoryOptions };
|