@storybook/html-webpack5 0.0.0-pr-24698-sha-758c0de1 → 0.0.0-pr-24741-sha-ea66c9c8
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 +3 -13
- package/package.json +8 -8
package/dist/preset.d.ts
CHANGED
@@ -800,7 +800,7 @@ type Indexer = BaseIndexer & {
|
|
800
800
|
*/
|
801
801
|
createIndex: (fileName: string, options: IndexerOptions) => Promise<IndexInput[]>;
|
802
802
|
/**
|
803
|
-
* @
|
803
|
+
* @soonDeprecated Use {@link index} instead
|
804
804
|
*/
|
805
805
|
indexer?: never;
|
806
806
|
};
|
@@ -809,7 +809,7 @@ type DeprecatedIndexer = BaseIndexer & {
|
|
809
809
|
createIndex?: never;
|
810
810
|
};
|
811
811
|
/**
|
812
|
-
* @
|
812
|
+
* @soonDeprecated Use {@link Indexer} instead
|
813
813
|
*/
|
814
814
|
type StoryIndexer = Indexer | DeprecatedIndexer;
|
815
815
|
/**
|
@@ -908,7 +908,6 @@ interface Presets {
|
|
908
908
|
apply(extension: 'managerEntries', config: [], args?: any): Promise<string[]>;
|
909
909
|
apply(extension: 'refs', config?: [], args?: any): Promise<unknown>;
|
910
910
|
apply(extension: 'core', config?: {}, args?: any): Promise<CoreConfig>;
|
911
|
-
apply(extension: 'build', config?: {}, args?: any): Promise<StorybookConfig['build']>;
|
912
911
|
apply<T>(extension: string, config?: T, args?: unknown): Promise<T>;
|
913
912
|
}
|
914
913
|
interface LoadedPreset {
|
@@ -957,7 +956,6 @@ interface CLIOptions {
|
|
957
956
|
quiet?: boolean;
|
958
957
|
versionUpdates?: boolean;
|
959
958
|
docs?: boolean;
|
960
|
-
test?: boolean;
|
961
959
|
debugWebpack?: boolean;
|
962
960
|
webpackStatsJson?: string | boolean;
|
963
961
|
outputDir?: string;
|
@@ -1077,14 +1075,6 @@ interface StorybookConfig {
|
|
1077
1075
|
*/
|
1078
1076
|
legacyDecoratorFileOrder?: boolean;
|
1079
1077
|
};
|
1080
|
-
build?: {
|
1081
|
-
test?: {
|
1082
|
-
/**
|
1083
|
-
* Globalize @storybook/blocks
|
1084
|
-
*/
|
1085
|
-
emptyBlocks?: boolean;
|
1086
|
-
};
|
1087
|
-
};
|
1088
1078
|
/**
|
1089
1079
|
* Tells Storybook where to find stories.
|
1090
1080
|
*
|
@@ -1127,7 +1117,7 @@ interface StorybookConfig {
|
|
1127
1117
|
previewAnnotations?: PresetValue<Entry[]>;
|
1128
1118
|
/**
|
1129
1119
|
* Process CSF files for the story index.
|
1130
|
-
* @
|
1120
|
+
* @soonDeprecated use {@link experimental_indexers} instead
|
1131
1121
|
*/
|
1132
1122
|
storyIndexers?: PresetValue<StoryIndexer[]>;
|
1133
1123
|
/**
|
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-24741-sha-ea66c9c8",
|
4
4
|
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -43,16 +43,16 @@
|
|
43
43
|
"!src/**/*"
|
44
44
|
],
|
45
45
|
"scripts": {
|
46
|
-
"check": "
|
47
|
-
"prep": "
|
46
|
+
"check": "../../../scripts/prepare/check.ts",
|
47
|
+
"prep": "../../../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-24741-sha-ea66c9c8",
|
51
|
+
"@storybook/core-common": "0.0.0-pr-24741-sha-ea66c9c8",
|
52
52
|
"@storybook/global": "^5.0.0",
|
53
|
-
"@storybook/html": "0.0.0-pr-
|
54
|
-
"@storybook/preset-html-webpack": "0.0.0-pr-
|
55
|
-
"@types/node": "^
|
53
|
+
"@storybook/html": "0.0.0-pr-24741-sha-ea66c9c8",
|
54
|
+
"@storybook/preset-html-webpack": "0.0.0-pr-24741-sha-ea66c9c8",
|
55
|
+
"@types/node": "^16.0.0"
|
56
56
|
},
|
57
57
|
"devDependencies": {
|
58
58
|
"typescript": "~4.9.3"
|