@codedrifters/configulator 0.0.316 → 0.0.318

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.js CHANGED
@@ -16916,8 +16916,8 @@ var PnpmWorkspace = class _PnpmWorkspace extends import_projen.Component {
16916
16916
  * Get the pnpm workspace component of a project. If it does not exist,
16917
16917
  * return undefined.
16918
16918
  *
16919
- * @param project
16920
- * @returns
16919
+ * @param project - The project to query.
16920
+ * @returns The PnpmWorkspace component if present, otherwise undefined.
16921
16921
  */
16922
16922
  static of(project) {
16923
16923
  const isDefined = (c) => c instanceof _PnpmWorkspace;
@@ -25199,8 +25199,8 @@ var ProjectMetadata = class _ProjectMetadata extends import_projen2.Component {
25199
25199
  /**
25200
25200
  * Return the maintainer-seed addendum for the `project-context`
25201
25201
  * bundle, or an empty string when the root project either has no
25202
- * layout-enforcement opinion or has opted out (`layoutEnforcement:
25203
- * "off"`).
25202
+ * layout-enforcement opinion or has opted out
25203
+ * (`layoutEnforcement: "off"`).
25204
25204
  *
25205
25205
  * Uses duck-typing on the root project's `layoutEnforcement`
25206
25206
  * property to avoid a circular import with `MonorepoProject`. The
@@ -27960,7 +27960,7 @@ _TurboRepo.buildWorkflowOptions = (remoteCacheOptions) => {
27960
27960
  preBuildSteps: [
27961
27961
  {
27962
27962
  name: "AWS Creds for SSM",
27963
- uses: "aws-actions/configure-aws-credentials@v4",
27963
+ uses: "aws-actions/configure-aws-credentials@v6",
27964
27964
  with: {
27965
27965
  ["role-to-assume"]: remoteCacheOptions.oidcRole,
27966
27966
  ["aws-region"]: "us-east-1",
@@ -28373,7 +28373,7 @@ var VERSION = {
28373
28373
  */
28374
28374
  SHARP_VERSION: "0.34.5",
28375
28375
  /**
28376
- * Version of @astrojs/starlight to pin for StarlightProject scaffolding.
28376
+ * Version of `@astrojs/starlight` to pin for StarlightProject scaffolding.
28377
28377
  */
28378
28378
  STARLIGHT_VERSION: "0.39.2",
28379
28379
  /**
@@ -28381,7 +28381,7 @@ var VERSION = {
28381
28381
  */
28382
28382
  TURBO_VERSION: "2.9.14",
28383
28383
  /**
28384
- * Version of @types/node to use across all packages (pnpm catalog).
28384
+ * Version of `@types/node` to use across all packages (pnpm catalog).
28385
28385
  */
28386
28386
  TYPES_NODE_VERSION: "25.8.0",
28387
28387
  /**
@@ -31963,7 +31963,7 @@ var AuditCategory = {
31963
31963
  LinkFailures: "linkFailures",
31964
31964
  /**
31965
31965
  * Findings produced by the fenced-sample compilation check that
31966
- * flags ` ```ts ` / ` ```typescript ` / ` ```tsx ` blocks in the
31966
+ * flags `ts`, `typescript`, and `tsx` fenced code blocks in the
31967
31967
  * docs that fail `tsc`. Wired in by child issue #520.
31968
31968
  */
31969
31969
  SampleFailures: "sampleFailures"
@@ -34032,7 +34032,7 @@ var MonorepoProject = class extends import_typescript3.TypeScriptAppProject {
34032
34032
  release: false,
34033
34033
  /**
34034
34034
  * Uppgrade dependencies automatically unless otherwise instructed.
34035
- * Exclude @codedrifters/configulator so the default upgrade task does not
34035
+ * Exclude `@codedrifters/configulator` so the default upgrade task does not
34036
34036
  * upgrade it (version is often managed in-repo or via a separate sync step).
34037
34037
  */
34038
34038
  depsUpgrade: true,
@@ -34309,12 +34309,8 @@ var MonorepoProject = class extends import_typescript3.TypeScriptAppProject {
34309
34309
 
34310
34310
  // src/typescript/tsdoc-config.ts
34311
34311
  var import_projen20 = require("projen");
34312
- var STANDARD_MODIFIER_TAGS = [
34313
- "@default",
34314
- "@defaultValue",
34315
- "@experimental",
34316
- "@internal"
34317
- ];
34312
+ var STANDARD_MODIFIER_TAGS = ["@default"];
34313
+ var STANDARD_INLINE_TAGS = ["@code"];
34318
34314
  var ALWAYS_ON_SCOPES = ["@codedrifters"];
34319
34315
  var TsdocConfig = class _TsdocConfig extends import_projen20.Component {
34320
34316
  /**
@@ -34343,17 +34339,26 @@ var TsdocConfig = class _TsdocConfig extends import_projen20.Component {
34343
34339
  ...scopeFromName ? [scopeFromName] : [],
34344
34340
  ...options.workspaceScopes ?? []
34345
34341
  ]);
34346
- const tagSet = /* @__PURE__ */ new Set([
34342
+ const modifierTagSet = /* @__PURE__ */ new Set([
34347
34343
  ...STANDARD_MODIFIER_TAGS,
34348
34344
  ...Array.from(scopeSet),
34349
34345
  ...options.additionalModifierTags ?? []
34350
34346
  ]);
34351
- const tagDefinitions = Array.from(tagSet).sort((a, b) => a.localeCompare(b)).map((tagName) => ({
34352
- tagName,
34353
- syntaxKind: "modifier",
34354
- allowMultiple: true
34355
- }));
34347
+ const inlineTagSet = /* @__PURE__ */ new Set([...STANDARD_INLINE_TAGS]);
34348
+ const tagDefinitions = [
34349
+ ...Array.from(modifierTagSet).map((tagName) => ({
34350
+ tagName,
34351
+ syntaxKind: "modifier",
34352
+ allowMultiple: true
34353
+ })),
34354
+ ...Array.from(inlineTagSet).map((tagName) => ({
34355
+ tagName,
34356
+ syntaxKind: "inline",
34357
+ allowMultiple: true
34358
+ }))
34359
+ ].sort((a, b) => a.tagName.localeCompare(b.tagName));
34356
34360
  new import_projen20.JsonFile(project, "tsdoc.json", {
34361
+ marker: false,
34357
34362
  obj: {
34358
34363
  $schema: "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
34359
34364
  tagDefinitions
@@ -34803,7 +34808,7 @@ var AwsDeployWorkflow = class _AwsDeployWorkflow extends import_projen24.Compone
34803
34808
  * Handles both exact matches (e.g., "main") and glob patterns (e.g., "feature/*").
34804
34809
  * Also allows workflow_dispatch (manual runs) to proceed.
34805
34810
  *
34806
- * @param branches Array of GitBranch objects with branch patterns
34811
+ * @param branches - Array of GitBranch objects with branch patterns
34807
34812
  * @returns Condition string or empty string if no branches provided
34808
34813
  */
34809
34814
  this.buildBranchFilterCondition = (branches) => {
@@ -34850,7 +34855,7 @@ var AwsDeployWorkflow = class _AwsDeployWorkflow extends import_projen24.Compone
34850
34855
  */
34851
34856
  {
34852
34857
  name: `AWS Creds ${awsStageType}/${deploymentTargetRole}/${account}/${region}`,
34853
- uses: "aws-actions/configure-aws-credentials@v4",
34858
+ uses: "aws-actions/configure-aws-credentials@v6",
34854
34859
  with: {
34855
34860
  "role-to-assume": roleArn,
34856
34861
  "aws-region": region,