@storybook/addon-themes 7.5.0-alpha.0 → 7.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 +8 -8
  2. package/postinstall.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/addon-themes",
3
- "version": "7.5.0-alpha.0",
3
+ "version": "7.5.0-alpha.2",
4
4
  "description": "Switch between multiple themes for you components in Storybook",
5
5
  "keywords": [
6
6
  "css",
@@ -74,13 +74,13 @@
74
74
  "prep": "../../../scripts/prepare/bundle.ts"
75
75
  },
76
76
  "dependencies": {
77
- "@storybook/client-logger": "7.5.0-alpha.0",
78
- "@storybook/components": "7.5.0-alpha.0",
79
- "@storybook/core-events": "7.5.0-alpha.0",
80
- "@storybook/manager-api": "7.5.0-alpha.0",
81
- "@storybook/preview-api": "7.5.0-alpha.0",
82
- "@storybook/theming": "7.5.0-alpha.0",
83
- "@storybook/types": "7.5.0-alpha.0",
77
+ "@storybook/client-logger": "7.5.0-alpha.2",
78
+ "@storybook/components": "7.5.0-alpha.2",
79
+ "@storybook/core-events": "7.5.0-alpha.2",
80
+ "@storybook/manager-api": "7.5.0-alpha.2",
81
+ "@storybook/preview-api": "7.5.0-alpha.2",
82
+ "@storybook/theming": "7.5.0-alpha.2",
83
+ "@storybook/types": "7.5.0-alpha.2",
84
84
  "ts-dedent": "^2.0.0"
85
85
  },
86
86
  "devDependencies": {
package/postinstall.js CHANGED
@@ -2,7 +2,7 @@ const { spawn } = require('child_process');
2
2
 
3
3
  const PACKAGE_MANAGER_TO_COMMAND = {
4
4
  npm: 'npx',
5
- yarn1: 'yarn dlx',
5
+ yarn1: 'npx',
6
6
  yarn2: 'yarn dlx',
7
7
  pnpm: 'pnpm dlx',
8
8
  };