storybook 9.0.0-rc.2 → 9.0.0-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/index.cjs +59 -52
- package/dist/bin/index.js +50 -43
- package/dist/cli/bin/index.cjs +1 -1
- package/dist/cli/bin/index.js +1 -1
- package/dist/common/index.cjs +1255 -1248
- package/dist/common/index.d.ts +7 -0
- package/dist/common/index.js +50 -43
- package/dist/core-server/presets/common-manager.js +1 -1
- package/dist/core-server/presets/common-preset.cjs +20 -17
- package/dist/core-server/presets/common-preset.js +19 -16
- package/dist/csf-tools/index.cjs +542 -535
- package/dist/csf-tools/index.js +531 -524
- package/dist/docs-tools/index.cjs +38 -40
- package/dist/docs-tools/index.d.ts +3 -5
- package/dist/docs-tools/index.js +94 -96
- package/dist/manager/globals-runtime.js +8404 -8382
- package/dist/manager-api/index.cjs +513 -491
- package/dist/manager-api/index.js +474 -453
- package/dist/preview/runtime.js +1 -3
- package/dist/preview-api/index.cjs +407 -410
- package/dist/preview-api/index.js +1 -3
- package/package.json +1 -1
|
@@ -3281,9 +3281,7 @@ function rr() {
|
|
|
3281
3281
|
return (
|
|
3282
3282
|
// @ts-expect-error this property exists in certain environments
|
|
3283
3283
|
!!globalThis.__vitest_browser__ || // @ts-expect-error this property exists in certain environments
|
|
3284
|
-
!!globalThis.__playwright__binding__
|
|
3285
|
-
!!import.meta.vitest || // @ts-expect-error this property exists in certain environments
|
|
3286
|
-
import.meta.env.MODE === "test"
|
|
3284
|
+
!!globalThis.__playwright__binding__
|
|
3287
3285
|
);
|
|
3288
3286
|
} catch {
|
|
3289
3287
|
return !1;
|