From 01802cda8f03f8235a88b857dfcf048d31873fae Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Tue, 30 Dec 2025 11:23:30 +0100 Subject: [PATCH] fix: storybook dependencies aren't resolving (#166) This is because upstream marks 8.6.14 as "latest" for 3 of the subpackages, but 8.6.15 as "latest" for all others. This confuses npm heavily. And yes, ideally we upgrade to 10, but that is for another day. First we unbreak building this repo! --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 059443c..09f6ae7 100644 --- a/package.json +++ b/package.json @@ -29,8 +29,8 @@ "@rollup/plugin-commonjs": "^25", "@rollup/plugin-node-resolve": "^15", "@rollup/plugin-terser": "^0", - "@storybook/addon-essentials": "^8", - "@storybook/addon-interactions": "^8", + "@storybook/addon-essentials": "8.6.15", + "@storybook/addon-interactions": "8.6.15", "@storybook/addon-links": "^8", "@storybook/addon-webpack5-compiler-babel": "^3", "@storybook/blocks": "^8", @@ -38,7 +38,7 @@ "@storybook/react": "^8", "@storybook/react-webpack5": "^8", "@storybook/test": "^8", - "@storybook/types": "^8", + "@storybook/types": "8.6.15", "@types/react": "^18", "@types/react-dom": "^18", "@typescript-eslint/eslint-plugin": "^7",