From 66a70015cd23871055d570812f928361df18a895 Mon Sep 17 00:00:00 2001 From: Vijayan Date: Thu, 23 Feb 2023 21:29:47 +0530 Subject: [PATCH] Fix node version compatible Fix node version compatible with null coalescing operator. - The null coalescing operator support is available from node 14 only. Reference: https://node.green/#ES2020-features--nullish-coalescing-operator----- Resolves: https://github.com/WordPress/gutenberg/pull/45414/files --- packages/i18n/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 9ce751306a0af..b3cbb81153575 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -19,7 +19,7 @@ "url": "https://github.com/WordPress/gutenberg/issues" }, "engines": { - "node": ">=12" + "node": ">=14.0.0" }, "main": "build/index.js", "module": "build-module/index.js",