From 5312869abfb0a1368e25f33d4c7f3af80268355d Mon Sep 17 00:00:00 2001 From: Callin Mullaney <57088-callinmullaney@users.noreply.drupalcode.org> Date: Fri, 27 Jun 2025 16:05:37 -0500 Subject: [PATCH 1/2] fix: whisk node version doesn't match emulsify-core --- whisk/.nvmrc | 2 +- whisk/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/whisk/.nvmrc b/whisk/.nvmrc index 2edeafb..cabf43b 100644 --- a/whisk/.nvmrc +++ b/whisk/.nvmrc @@ -1 +1 @@ -20 \ No newline at end of file +24 \ No newline at end of file diff --git a/whisk/package.json b/whisk/package.json index ba0724f..cf21004 100644 --- a/whisk/package.json +++ b/whisk/package.json @@ -38,6 +38,6 @@ "webpack": "webpack --watch --config node_modules/@emulsify/core/config/webpack/webpack.dev.js" }, "dependencies": { - "@emulsify/core": "^3.0.3" + "@emulsify/core": "^3.1.0" } } From 9aaa76f472d15e030c6334f9a426f13b9484087a Mon Sep 17 00:00:00 2001 From: Callin Mullaney <57088-callinmullaney@users.noreply.drupalcode.org> Date: Fri, 27 Jun 2025 16:57:15 -0500 Subject: [PATCH 2/2] fix: set es module scope for whisk --- whisk/package.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/whisk/package.json b/whisk/package.json index cf21004..e6e974f 100644 --- a/whisk/package.json +++ b/whisk/package.json @@ -11,7 +11,11 @@ "styleguide" ], "author": "Four Kitchens ", - "license": "ISC", + "license": "GPL-2.0", + "engines": { + "node": ">=24" + }, + "type": "module", "scripts": { "a11y": "npm run storybook-build && node_modules/@emulsify/core/scripts/a11y.js -r", "build": "npm run ensure-dist && webpack --config node_modules/@emulsify/core/config/webpack/webpack.prod.js",