From 8d47069eca39a62e64415bb8ba45d060d227be9d Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Tue, 16 May 2023 15:49:22 +0200 Subject: [PATCH] Fix the `constructs` dependency to a Node 14-compatible version The `constructs` package dropped support for Node 14. Until we do the same, we need to require a version compatible with Node 14. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b4a20995..04b29419 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "chalk": "^4.1.1", "change-case": "^4.1.2", "cidr-split": "^0.1.2", - "constructs": "^10.0.127", + "constructs": "10.2.20", "inquirer": "^7.3.3", "js-yaml": "^3.14.1", "lodash": "^4.17.21",