@storybook/addon-themes 8.5.0-alpha.0 → 8.5.0-alpha.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/postinstall.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/addon-themes",
3
- "version": "8.5.0-alpha.0",
3
+ "version": "8.5.0-alpha.2",
4
4
  "description": "Switch between multiple themes for you components in Storybook",
5
5
  "keywords": [
6
6
  "css",
@@ -63,7 +63,7 @@
63
63
  "typescript": "^5.3.2"
64
64
  },
65
65
  "peerDependencies": {
66
- "storybook": "^8.5.0-alpha.0"
66
+ "storybook": "^8.5.0-alpha.2"
67
67
  },
68
68
  "publishConfig": {
69
69
  "access": "public"
package/postinstall.js CHANGED
@@ -5,6 +5,7 @@ const PACKAGE_MANAGER_TO_COMMAND = {
5
5
  pnpm: ['pnpm', 'dlx'],
6
6
  yarn1: ['npx'],
7
7
  yarn2: ['yarn', 'dlx'],
8
+ bun: ['bunx'],
8
9
  };
9
10
 
10
11
  const selectPackageManagerCommand = (packageManager) => PACKAGE_MANAGER_TO_COMMAND[packageManager];