vite-plugin-storybook-nextjs 2.0.3--canary.73dddc3.0 → 2.0.3--canary.45.35325be.0

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/index.d.cts CHANGED
@@ -6,12 +6,7 @@ type VitePluginOptions = {
6
6
  * @default process.cwd()
7
7
  */
8
8
  dir?: string;
9
- /**
10
- * Force alias in test environment
11
- * @default false
12
- */
13
- forceAliasInTest?: boolean;
14
9
  };
15
- declare function VitePlugin({ dir, forceAliasInTest, }?: VitePluginOptions): Plugin[];
10
+ declare function VitePlugin({ dir, }?: VitePluginOptions): (Plugin | Promise<Plugin>)[];
16
11
 
17
12
  export { VitePlugin as default };
package/dist/index.d.ts CHANGED
@@ -6,12 +6,7 @@ type VitePluginOptions = {
6
6
  * @default process.cwd()
7
7
  */
8
8
  dir?: string;
9
- /**
10
- * Force alias in test environment
11
- * @default false
12
- */
13
- forceAliasInTest?: boolean;
14
9
  };
15
- declare function VitePlugin({ dir, forceAliasInTest, }?: VitePluginOptions): Plugin[];
10
+ declare function VitePlugin({ dir, }?: VitePluginOptions): (Plugin | Promise<Plugin>)[];
16
11
 
17
12
  export { VitePlugin as default };