@intentius/chant-lexicon-github 0.34.1 → 0.37.2

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.
@@ -1 +1 @@
1
- {"version":3,"file":"docs.d.ts","sourceRoot":"","sources":["../../src/codegen/docs.ts"],"names":[],"mappings":"AAAA;;GAEG;AA8EH;;GAEG;AACH,wBAAsB,YAAY,CAAC,IAAI,CAAC,EAAE;IAAE,OAAO,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAmzC9E"}
1
+ {"version":3,"file":"docs.d.ts","sourceRoot":"","sources":["../../src/codegen/docs.ts"],"names":[],"mappings":"AAAA;;GAEG;AA8EH;;GAEG;AACH,wBAAsB,YAAY,CAAC,IAAI,CAAC,EAAE;IAAE,OAAO,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA2zC9E"}
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "algorithm": "sha256",
3
3
  "artifacts": {
4
- "manifest.json": "81f7529c07bee2edca327cd9488020279fe328b3e317875c257b11c9ff361044",
4
+ "manifest.json": "96a242791ff015809432015fa5e306bb35b8ca069a000f2d88756445a22e3f03",
5
5
  "meta.json": "798c5f5f37b0174756d2451299acfdc95c014f11d06d32b9153bbdfa9f3a580c",
6
6
  "types/index.d.ts": "39c0791f0e58025bcef82e0f7a92240508f899fc2771d5dd51b2369b4d330f13",
7
7
  "rules/deprecated-action-version.ts": "d41e6e532ab7f623af1bee4ac5279fcb2baada7defa1c5d022a5bc71983e8797",
@@ -67,5 +67,5 @@
67
67
  "skills/chant-github-patterns.md": "bb3abef289a8fdfcf07d6bb2d7289dcb2f38bc0cb0321ea320b78b45a6f548c0",
68
68
  "skills/chant-github-security.md": "aab111cb0871cad30281ce48d7da23663689619351029219e2be019a1a61e394"
69
69
  },
70
- "composite": "2cb174a35c7f577dafa7c53d7985e8b791b239d7bc2801333559076adad304a4"
70
+ "composite": "411e46969685af8991dececf0b2f3c02e89990a8ce28f14bcca2d2bd6bb6e338"
71
71
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github",
3
- "version": "0.34.1",
3
+ "version": "0.37.2",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "GitHub",
6
6
  "intrinsics": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-github",
3
- "version": "0.34.1",
3
+ "version": "0.37.2",
4
4
  "description": "GitHub Actions lexicon for chant — declarative IaC in TypeScript",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://intentius.io/chant",
@@ -61,7 +61,7 @@
61
61
  "typescript": "^5.9.3"
62
62
  },
63
63
  "peerDependencies": {
64
- "@intentius/chant": "^0.34.1",
64
+ "@intentius/chant": "^0.37.2",
65
65
  "typescript": "^5.9.3"
66
66
  }
67
67
  }
@@ -93,7 +93,7 @@ export async function generateDocs(opts?: { verbose?: boolean }): Promise<void>
93
93
  overview,
94
94
  outputFormat,
95
95
  serviceFromType,
96
- suppressPages: ["intrinsics", "rules"],
96
+ suppressPages: ["intrinsics"],
97
97
  examplesDir: join(pkgDir, "examples"),
98
98
  extraSections: [
99
99
  {
@@ -606,7 +606,7 @@ export const build = new Job({
606
606
 
607
607
  {{file:docs-snippets/src/composites-usage.ts}}
608
608
 
609
- **A note on \`chant build --fold\`.** These two composite shapes fold differently (see [Folded vs Run](/chant/concepts/typescript-as-data/#folded-vs-run)). A single-action wrapper like \`Checkout({...})\` is normally embedded inline as \`checkout.step\` inside a \`Job\`'s \`steps\` array — a call nested as a value inside another resource's own properties, which is outside the fold subset, so a file using it falls back to the normal run path. A multi-job pipeline composite like \`NodePipeline({...})\` is normally consumed the other way: bound to a local \`const\`, then each member re-exported separately (\`export const nodeWorkflow = node.workflow\`) — a top-level export whose value is a call result's member access, which is exactly the composite-call shape \`chant build --fold\` resolves (chant #1023).
609
+ **A note on folding.** These two composite shapes fold differently (see [Folded vs Run](/chant/concepts/typescript-as-data/#folded-vs-run)). A single-action wrapper like \`Checkout({...})\` is normally embedded inline as \`checkout.step\` inside a \`Job\`'s \`steps\` array — a call nested as a value inside another resource's own properties, which is outside the fold subset, so a file using it falls back to the normal run path. A multi-job pipeline composite like \`NodePipeline({...})\` is normally consumed the other way: bound to a local \`const\`, then each member re-exported separately (\`export const nodeWorkflow = node.workflow\`) — a top-level export whose value is a call result's member access, which is exactly the composite-call shape folding resolves (chant #1023).
610
610
 
611
611
  ## Checkout
612
612
 
@@ -1402,6 +1402,14 @@ The \`github:*\` tools are **read-only context tools** (#327): each builds from
1402
1402
  },
1403
1403
  ],
1404
1404
  basePath: "/chant/lexicons/github/",
1405
+ // Hand-written pages under docs/src/content/docs/ that no sidebar entry
1406
+ // pointed at (#1312).
1407
+ sidebarExtra: [
1408
+ { label: "Workflows", slug: "workflows" },
1409
+ { label: "Actions & Composites", slug: "actions" },
1410
+ { label: "Matrix Strategies", slug: "matrix" },
1411
+ { label: "Multiple Workflows", slug: "multi-workflow" },
1412
+ ],
1405
1413
  };
1406
1414
 
1407
1415
  const result = await docsPipeline(config);