@storybook/html-webpack5 0.0.0-pr-24975-sha-7ac48cba → 0.0.0-pr-24447-sha-48644e16
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/preset.d.ts +28 -92
- package/package.json +6 -6
package/dist/preset.d.ts
CHANGED
@@ -1,9 +1,6 @@
|
|
1
1
|
import { FileSystemCache } from 'file-system-cache';
|
2
2
|
import { TransformOptions } from '@babel/core';
|
3
3
|
import { Server } from 'http';
|
4
|
-
import { StorybookConfig as StorybookConfig$1 } from './index.js';
|
5
|
-
import '@storybook/preset-html-webpack';
|
6
|
-
import '@storybook/builder-webpack5';
|
7
4
|
|
8
5
|
/**
|
9
6
|
Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive).
|
@@ -2787,9 +2784,13 @@ interface Presets {
|
|
2787
2784
|
apply(extension: 'entries', config?: [], args?: any): Promise<unknown>;
|
2788
2785
|
apply(extension: 'stories', config?: [], args?: any): Promise<StoriesEntry[]>;
|
2789
2786
|
apply(extension: 'managerEntries', config: [], args?: any): Promise<string[]>;
|
2790
|
-
apply(extension: 'refs', config?: [], args?: any): Promise<
|
2791
|
-
apply(extension: 'core', config?:
|
2792
|
-
apply(extension: '
|
2787
|
+
apply(extension: 'refs', config?: [], args?: any): Promise<StorybookConfigRaw['refs']>;
|
2788
|
+
apply(extension: 'core', config?: StorybookConfigRaw['core'], args?: any): Promise<NonNullable<StorybookConfigRaw['core']>>;
|
2789
|
+
apply(extension: 'docs', config?: StorybookConfigRaw['docs'], args?: any): Promise<NonNullable<StorybookConfigRaw['docs']>>;
|
2790
|
+
apply(extension: 'features', config?: StorybookConfigRaw['features'], args?: any): Promise<NonNullable<StorybookConfigRaw['features']>>;
|
2791
|
+
apply(extension: 'typescript', config?: StorybookConfigRaw['typescript'], args?: any): Promise<NonNullable<StorybookConfigRaw['typescript']>>;
|
2792
|
+
apply(extension: 'build', config?: StorybookConfigRaw['build'], args?: any): Promise<NonNullable<StorybookConfigRaw['build']>>;
|
2793
|
+
apply(extension: 'staticDirs', config?: StorybookConfigRaw['staticDirs'], args?: any): Promise<StorybookConfigRaw['staticDirs']>;
|
2793
2794
|
apply<T>(extension: string, config?: T, args?: unknown): Promise<T>;
|
2794
2795
|
}
|
2795
2796
|
interface LoadedPreset {
|
@@ -2821,6 +2822,7 @@ interface CLIOptions {
|
|
2821
2822
|
enableCrashReports?: boolean;
|
2822
2823
|
host?: string;
|
2823
2824
|
initialPath?: string;
|
2825
|
+
exactPort?: boolean;
|
2824
2826
|
/**
|
2825
2827
|
* @deprecated Use 'staticDirs' Storybook Configuration option instead
|
2826
2828
|
*/
|
@@ -2849,7 +2851,7 @@ interface BuilderOptions {
|
|
2849
2851
|
cache?: FileSystemCache;
|
2850
2852
|
configDir: string;
|
2851
2853
|
docsMode?: boolean;
|
2852
|
-
features?:
|
2854
|
+
features?: StorybookConfigRaw['features'];
|
2853
2855
|
versionCheck?: VersionCheck;
|
2854
2856
|
disableWebpackDefaults?: boolean;
|
2855
2857
|
serverChannelUrl?: string;
|
@@ -2955,9 +2957,10 @@ interface TestBuildConfig {
|
|
2955
2957
|
test?: TestBuildFlags;
|
2956
2958
|
}
|
2957
2959
|
/**
|
2958
|
-
* The interface for Storybook configuration in
|
2960
|
+
* The interface for Storybook configuration used internally in presets
|
2961
|
+
* The difference is that these values are the raw values, AKA, not wrapped with `PresetValue<>`
|
2959
2962
|
*/
|
2960
|
-
interface
|
2963
|
+
interface StorybookConfigRaw {
|
2961
2964
|
/**
|
2962
2965
|
* Sets the addons you want to use with Storybook.
|
2963
2966
|
*
|
@@ -2965,11 +2968,6 @@ interface StorybookConfig {
|
|
2965
2968
|
*/
|
2966
2969
|
addons?: Preset[];
|
2967
2970
|
core?: CoreConfig;
|
2968
|
-
/**
|
2969
|
-
* Sets a list of directories of static files to be loaded by Storybook server
|
2970
|
-
*
|
2971
|
-
* @example `['./public']` or `[{from: './public', 'to': '/assets'}]`
|
2972
|
-
*/
|
2973
2971
|
staticDirs?: (DirectoryMapping | string)[];
|
2974
2972
|
logLevel?: string;
|
2975
2973
|
features?: {
|
@@ -3011,91 +3009,29 @@ interface StorybookConfig {
|
|
3011
3009
|
disallowImplicitActionsInRenderV8?: boolean;
|
3012
3010
|
};
|
3013
3011
|
build?: TestBuildConfig;
|
3014
|
-
/**
|
3015
|
-
* Tells Storybook where to find stories.
|
3016
|
-
*
|
3017
|
-
* @example `['./src/*.stories.@(j|t)sx?']`
|
3018
|
-
*/
|
3019
3012
|
stories: StoriesEntry[];
|
3020
|
-
/**
|
3021
|
-
* Framework, e.g. '@storybook/react-vite', required in v7
|
3022
|
-
*/
|
3023
3013
|
framework?: Preset;
|
3024
|
-
/**
|
3025
|
-
* Controls how Storybook handles TypeScript files.
|
3026
|
-
*/
|
3027
3014
|
typescript?: Partial<TypescriptOptions>;
|
3028
|
-
|
3029
|
-
|
3030
|
-
|
3031
|
-
|
3032
|
-
|
3033
|
-
|
3034
|
-
|
3035
|
-
|
3036
|
-
|
3037
|
-
* Modify or return swc config.
|
3038
|
-
*/
|
3039
|
-
swc?: (config: Options$2, options: Options) => Options$2 | Promise<Options$2>;
|
3040
|
-
/**
|
3041
|
-
* Modify or return env config.
|
3042
|
-
*/
|
3043
|
-
env?: PresetValue<Record<string, string>>;
|
3044
|
-
/**
|
3045
|
-
* Modify or return babel config.
|
3046
|
-
*/
|
3047
|
-
babelDefault?: (config: TransformOptions, options: Options) => TransformOptions | Promise<TransformOptions>;
|
3048
|
-
/**
|
3049
|
-
* Add additional scripts to run in the preview a la `.storybook/preview.js`
|
3050
|
-
*
|
3051
|
-
* @deprecated use `previewAnnotations` or `/preview.js` file instead
|
3052
|
-
*/
|
3053
|
-
config?: PresetValue<Entry[]>;
|
3054
|
-
/**
|
3055
|
-
* Add additional scripts to run in the preview a la `.storybook/preview.js`
|
3056
|
-
*/
|
3057
|
-
previewAnnotations?: PresetValue<Entry[]>;
|
3058
|
-
/**
|
3059
|
-
* Process CSF files for the story index.
|
3060
|
-
* @deprecated use {@link experimental_indexers} instead
|
3061
|
-
*/
|
3062
|
-
storyIndexers?: PresetValue<StoryIndexer[]>;
|
3063
|
-
/**
|
3064
|
-
* Process CSF files for the story index.
|
3065
|
-
*/
|
3066
|
-
experimental_indexers?: PresetValue<Indexer[]>;
|
3067
|
-
/**
|
3068
|
-
* Docs related features in index generation
|
3069
|
-
*/
|
3015
|
+
refs?: CoreCommon_StorybookRefs;
|
3016
|
+
babel?: TransformOptions;
|
3017
|
+
swc?: Options$2;
|
3018
|
+
env?: Record<string, string>;
|
3019
|
+
babelDefault?: TransformOptions;
|
3020
|
+
config?: Entry[];
|
3021
|
+
previewAnnotations?: Entry[];
|
3022
|
+
storyIndexers?: StoryIndexer[];
|
3023
|
+
experimental_indexers?: Indexer[];
|
3070
3024
|
docs?: DocsOptions;
|
3071
|
-
|
3072
|
-
|
3073
|
-
* The previewHead and previewBody functions accept a string,
|
3074
|
-
* which is the existing head/body, and return a modified string.
|
3075
|
-
*/
|
3076
|
-
previewHead?: PresetValue<string>;
|
3077
|
-
previewBody?: PresetValue<string>;
|
3078
|
-
/**
|
3079
|
-
* Programmatically override the preview's main page template.
|
3080
|
-
* This should return a reference to a file containing an `.ejs` template
|
3081
|
-
* that will be interpolated with environment variables.
|
3082
|
-
*
|
3083
|
-
* @example '.storybook/index.ejs'
|
3084
|
-
*/
|
3025
|
+
previewHead?: string;
|
3026
|
+
previewBody?: string;
|
3085
3027
|
previewMainTemplate?: string;
|
3086
|
-
|
3087
|
-
* Programmatically modify the preview head/body HTML.
|
3088
|
-
* The managerHead function accept a string,
|
3089
|
-
* which is the existing head content, and return a modified string.
|
3090
|
-
*/
|
3091
|
-
managerHead?: PresetValue<string>;
|
3028
|
+
managerHead?: string;
|
3092
3029
|
}
|
3093
|
-
type
|
3094
|
-
type
|
3095
|
-
type PresetPropertyFn<K, TStorybookConfig = StorybookConfig, TOptions = {}> = (config: TStorybookConfig[K extends keyof TStorybookConfig ? K : never], options: Options & TOptions) => TStorybookConfig[K extends keyof TStorybookConfig ? K : never] | Promise<TStorybookConfig[K extends keyof TStorybookConfig ? K : never]>;
|
3030
|
+
type PresetProperty<K, TStorybookConfig = StorybookConfigRaw> = TStorybookConfig[K extends keyof TStorybookConfig ? K : never] | PresetPropertyFn<K, TStorybookConfig>;
|
3031
|
+
type PresetPropertyFn<K, TStorybookConfig = StorybookConfigRaw, TOptions = {}> = (config: TStorybookConfig[K extends keyof TStorybookConfig ? K : never], options: Options & TOptions) => TStorybookConfig[K extends keyof TStorybookConfig ? K : never] | Promise<TStorybookConfig[K extends keyof TStorybookConfig ? K : never]>;
|
3096
3032
|
type Path = string;
|
3097
3033
|
|
3098
|
-
declare const addons: PresetProperty<'addons'
|
3099
|
-
declare const core: PresetProperty<'core'
|
3034
|
+
declare const addons: PresetProperty<'addons'>;
|
3035
|
+
declare const core: PresetProperty<'core'>;
|
3100
3036
|
|
3101
3037
|
export { addons, core };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/html-webpack5",
|
3
|
-
"version": "0.0.0-pr-
|
3
|
+
"version": "0.0.0-pr-24447-sha-48644e16",
|
4
4
|
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -47,15 +47,15 @@
|
|
47
47
|
"prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@storybook/builder-webpack5": "0.0.0-pr-
|
51
|
-
"@storybook/core-common": "0.0.0-pr-
|
50
|
+
"@storybook/builder-webpack5": "0.0.0-pr-24447-sha-48644e16",
|
51
|
+
"@storybook/core-common": "0.0.0-pr-24447-sha-48644e16",
|
52
52
|
"@storybook/global": "^5.0.0",
|
53
|
-
"@storybook/html": "0.0.0-pr-
|
54
|
-
"@storybook/preset-html-webpack": "0.0.0-pr-
|
53
|
+
"@storybook/html": "0.0.0-pr-24447-sha-48644e16",
|
54
|
+
"@storybook/preset-html-webpack": "0.0.0-pr-24447-sha-48644e16",
|
55
55
|
"@types/node": "^18.0.0"
|
56
56
|
},
|
57
57
|
"devDependencies": {
|
58
|
-
"typescript": "
|
58
|
+
"typescript": "^5.3.2"
|
59
59
|
},
|
60
60
|
"peerDependencies": {
|
61
61
|
"@babel/core": "*"
|