From 95ce2de47f6496a90723457dbfa3cdc15fe954b5 Mon Sep 17 00:00:00 2001 From: Sam Arbid Date: Mon, 29 Jun 2026 16:00:33 +0200 Subject: [PATCH 1/2] fix(pnpm): add prop-types as dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix pnpm installation Unresolved dependencies error: src/lib/index.js → dist/cjs/index.js, dist/esm/index.js... (!) Unresolved dependencies https://rollupjs.org/guide/en/#warning-treating-module-as-external-dependency prop-types (imported by src/lib/forms/fieldComponents.js) * add pnpm-workspace as after pnpm 11 its required to declare if the postscript should run. --- package.json | 1 + pnpm-workspace.yaml | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 pnpm-workspace.yaml diff --git a/package.json b/package.json index 724fa555..1324c199 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "formik": "^2.1.0", "lodash": "^4.17.0", "luxon": "^1.23.0", + "prop-types": "^15.8.1", "query-string": "^7.0.0", "react": "^16.13.0", "react-dom": "^16.13.0", diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 00000000..aa0597cb --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,3 @@ +allowBuilds: + core-js: false + core-js-pure: false From a68ec720cf0706c3538074095e03e48947c7fa5a Mon Sep 17 00:00:00 2001 From: Sam Arbid Date: Mon, 29 Jun 2026 16:02:49 +0200 Subject: [PATCH 2/2] fix(ci): add Node.js 24.x to test matrix --- .github/workflows/js-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/js-tests.yml b/.github/workflows/js-tests.yml index f6ac4e6b..a427017b 100644 --- a/.github/workflows/js-tests.yml +++ b/.github/workflows/js-tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [18.x, 16.x] + node-version: [24.x, 18.x, 16.x] steps: - name: Checkout