@storybook/preact-vite 0.0.0-pr-24447-sha-0e9b8a79 → 0.0.0-pr-24676-sha-7d703fa3
Sign up to get free protection for your applications and to get access to all the features.
@@ -798,7 +798,7 @@ type Indexer = BaseIndexer & {
|
|
798
798
|
*/
|
799
799
|
createIndex: (fileName: string, options: IndexerOptions) => Promise<IndexInput[]>;
|
800
800
|
/**
|
801
|
-
* @
|
801
|
+
* @deprecated Use {@link index} instead
|
802
802
|
*/
|
803
803
|
indexer?: never;
|
804
804
|
};
|
@@ -807,7 +807,7 @@ type DeprecatedIndexer = BaseIndexer & {
|
|
807
807
|
createIndex?: never;
|
808
808
|
};
|
809
809
|
/**
|
810
|
-
* @
|
810
|
+
* @deprecated Use {@link Indexer} instead
|
811
811
|
*/
|
812
812
|
type StoryIndexer = Indexer | DeprecatedIndexer;
|
813
813
|
/**
|
@@ -906,6 +906,7 @@ interface Presets {
|
|
906
906
|
apply(extension: 'managerEntries', config: [], args?: any): Promise<string[]>;
|
907
907
|
apply(extension: 'refs', config?: [], args?: any): Promise<unknown>;
|
908
908
|
apply(extension: 'core', config?: {}, args?: any): Promise<CoreConfig>;
|
909
|
+
apply(extension: 'build', config?: {}, args?: any): Promise<StorybookConfig$1['build']>;
|
909
910
|
apply<T>(extension: string, config?: T, args?: unknown): Promise<T>;
|
910
911
|
}
|
911
912
|
interface LoadedPreset {
|
@@ -937,7 +938,6 @@ interface CLIOptions {
|
|
937
938
|
enableCrashReports?: boolean;
|
938
939
|
host?: string;
|
939
940
|
initialPath?: string;
|
940
|
-
exactPort?: boolean;
|
941
941
|
/**
|
942
942
|
* @deprecated Use 'staticDirs' Storybook Configuration option instead
|
943
943
|
*/
|
@@ -955,6 +955,7 @@ interface CLIOptions {
|
|
955
955
|
quiet?: boolean;
|
956
956
|
versionUpdates?: boolean;
|
957
957
|
docs?: boolean;
|
958
|
+
test?: boolean;
|
958
959
|
debugWebpack?: boolean;
|
959
960
|
webpackStatsJson?: string | boolean;
|
960
961
|
outputDir?: string;
|
@@ -1074,6 +1075,14 @@ interface StorybookConfig$1 {
|
|
1074
1075
|
*/
|
1075
1076
|
legacyDecoratorFileOrder?: boolean;
|
1076
1077
|
};
|
1078
|
+
build?: {
|
1079
|
+
test?: {
|
1080
|
+
/**
|
1081
|
+
* Globalize @storybook/blocks
|
1082
|
+
*/
|
1083
|
+
emptyBlocks?: boolean;
|
1084
|
+
};
|
1085
|
+
};
|
1077
1086
|
/**
|
1078
1087
|
* Tells Storybook where to find stories.
|
1079
1088
|
*
|
@@ -1116,7 +1125,7 @@ interface StorybookConfig$1 {
|
|
1116
1125
|
previewAnnotations?: PresetValue<Entry[]>;
|
1117
1126
|
/**
|
1118
1127
|
* Process CSF files for the story index.
|
1119
|
-
* @
|
1128
|
+
* @deprecated use {@link experimental_indexers} instead
|
1120
1129
|
*/
|
1121
1130
|
storyIndexers?: PresetValue<StoryIndexer[]>;
|
1122
1131
|
/**
|
package/dist/index.d.ts
CHANGED
package/dist/preset.d.ts
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/preact-vite",
|
3
|
-
"version": "0.0.0-pr-
|
3
|
+
"version": "0.0.0-pr-24676-sha-7d703fa3",
|
4
4
|
"description": "Storybook for Preact and Vite: Develop Preact components in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -48,17 +48,17 @@
|
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
50
|
"@preact/preset-vite": "^2.0.0",
|
51
|
-
"@storybook/builder-vite": "0.0.0-pr-
|
52
|
-
"@storybook/preact": "0.0.0-pr-
|
51
|
+
"@storybook/builder-vite": "0.0.0-pr-24676-sha-7d703fa3",
|
52
|
+
"@storybook/preact": "0.0.0-pr-24676-sha-7d703fa3"
|
53
53
|
},
|
54
54
|
"devDependencies": {
|
55
|
-
"@types/node": "^
|
55
|
+
"@types/node": "^18.0.0",
|
56
56
|
"typescript": "~4.9.3",
|
57
57
|
"vite": "^4.0.0"
|
58
58
|
},
|
59
59
|
"peerDependencies": {
|
60
60
|
"preact": ">=10",
|
61
|
-
"vite": "^3.0.0 || ^4.0.0"
|
61
|
+
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
|
62
62
|
},
|
63
63
|
"engines": {
|
64
64
|
"node": ">=16"
|