@intentius/chant 0.44.9 → 0.44.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant",
|
|
3
|
-
"version": "0.44.
|
|
3
|
+
"version": "0.44.12",
|
|
4
4
|
"description": "Declarative infrastructure-as-code toolkit — TypeScript on Node.js",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://intentius.io/chant",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@dagrejs/dagre": "^3.0.0",
|
|
79
|
-
"esbuild": "^0.
|
|
79
|
+
"esbuild": "^0.28.1",
|
|
80
80
|
"fflate": "^0.8.2",
|
|
81
81
|
"picomatch": "^4.0.3",
|
|
82
82
|
"tsx": "^4.0.0",
|
|
@@ -108,6 +108,13 @@ describe("loadActivities — multi-lexicon (#706)", () => {
|
|
|
108
108
|
expect(a.has("azApply")).toBe(true);
|
|
109
109
|
});
|
|
110
110
|
|
|
111
|
+
test("cedar lexicon contributes the dogwood replay activities (#1661)", async () => {
|
|
112
|
+
const a = await loadActivities(["cedar"]);
|
|
113
|
+
expect(a.has("dogwoodReplay")).toBe(true);
|
|
114
|
+
expect(a.has("dogwoodReplayReport")).toBe(true);
|
|
115
|
+
expect(a.has("waitForStack")).toBe(true); // base still loaded alongside
|
|
116
|
+
});
|
|
117
|
+
|
|
111
118
|
test("unknown lexicon is skipped without throwing", async () => {
|
|
112
119
|
const a = await loadActivities(["definitely-not-a-lexicon"]);
|
|
113
120
|
expect(a.has("waitForStack")).toBe(true); // temporal base still loads
|