Skip to content

Commit 54ac87c

Browse files
authoredFeb 27, 2025··
Merge pull request #282 from storybookjs/norbert/sb-9-upgrade
upgrade to sb9 alpha
2 parents d6d736b + d26306d commit 54ac87c

11 files changed

+394
-3478
lines changed
 

‎package.json

+11-18
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@
5252
},
5353
"dependencies": {
5454
"@storybook/csf": "^0.1.11",
55-
"@storybook/docs-tools": "^0.0.0-0 || ^8.0.0 || ^9.0.0-0",
56-
"@storybook/types": "^0.0.0-0 || ^8.0.0 || ^9.0.0-0",
5755
"dedent": "^1.5.3",
5856
"es-toolkit": "^1.26.1",
5957
"esrap": "^1.2.2",
@@ -63,15 +61,13 @@
6361
},
6462
"devDependencies": {
6563
"@auto-it/released": "^11.1.6",
66-
"@chromatic-com/storybook": "^3.2.3",
67-
"@storybook/addon-actions": "8.5.0-beta.11",
68-
"@storybook/addon-essentials": "8.5.0-beta.11",
69-
"@storybook/eslint-config-storybook": "^4.0.0",
70-
"@storybook/experimental-addon-test": "^8.5.0-beta.11",
71-
"@storybook/preview-api": "8.5.0-beta.11",
72-
"@storybook/svelte": "8.5.0-beta.11",
73-
"@storybook/svelte-vite": "8.5.0-beta.11",
74-
"@storybook/test": "8.5.0-beta.11",
64+
"@chromatic-com/storybook": "^4.0.0-0",
65+
"@storybook/addon-actions": "^9.0.0-0",
66+
"@storybook/addon-essentials": "^9.0.0-0",
67+
"@storybook/experimental-addon-test": "^9.0.0-0",
68+
"@storybook/svelte": "^9.0.0-0",
69+
"@storybook/svelte-vite": "^9.0.0-0",
70+
"@storybook/test": "^9.0.0-0",
7571
"@sveltejs/package": "^2.3.7",
7672
"@sveltejs/vite-plugin-svelte": "4.0.0",
7773
"@tsconfig/svelte": "^5.0.4",
@@ -81,17 +77,17 @@
8177
"@vitest/coverage-v8": "2.1.4",
8278
"@vitest/ui": "^2.1.4",
8379
"auto": "^11.1.6",
84-
"chromatic": "^11.16.1",
80+
"chromatic": "^11.26.1",
8581
"concurrently": "^8.2.2",
8682
"eslint": "^7.32.0",
87-
"eslint-plugin-storybook": "^0.8.0",
83+
"eslint-plugin-storybook": "^0.11.3",
8884
"happy-dom": "^15.11.4",
8985
"playwright": "^1.49.1",
9086
"prettier": "^3.3.2",
9187
"prettier-plugin-svelte": "^3.2.5",
9288
"rimraf": "^5.0.7",
9389
"rollup": "^4.25.0",
94-
"storybook": "8.5.0-beta.11",
90+
"storybook": "^9.0.0-0",
9591
"svelte": "^5.0.0",
9692
"svelte-check": "^4.0.5",
9793
"tslib": "^2.6.3",
@@ -104,15 +100,12 @@
104100
"vitest": "^2.1.4"
105101
},
106102
"peerDependencies": {
103+
"storybook": "^0.0.0-0 || ^8.0.0 || ^9.0.0-0",
107104
"@storybook/svelte": "^0.0.0-0 || ^8.0.0 || ^9.0.0-0",
108105
"@sveltejs/vite-plugin-svelte": "^4.0.0 || ^5.0.0",
109106
"svelte": "^5.0.0",
110107
"vite": "^5.0.0 || ^6.0.0"
111108
},
112-
"resolutions": {
113-
"@storybook/docs-tools": "8.5.0-beta.11",
114-
"@storybook/types": "8.5.0-beta.11"
115-
},
116109
"publishConfig": {
117110
"access": "public"
118111
},

‎pnpm-lock.yaml

+373-3,450
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/index.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { StoryContext as StorybookStoryContext } from '@storybook/types';
1+
import type { StoryContext as StorybookStoryContext } from 'storybook/internal/types';
22
import { createRawSnippet, type ComponentProps, type Snippet } from 'svelte';
33
import type { Primitive } from 'type-fest';
44
import { describe, expectTypeOf, it } from 'vitest';

‎src/indexer/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { IndexInput, Indexer } from '@storybook/types';
1+
import type { IndexInput, Indexer } from 'storybook/internal/types';
22

33
import { parseForIndexer } from '$lib/indexer/parser.js';
44
import {

‎src/indexer/parser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fs from 'node:fs/promises';
22

33
import pkg from '@storybook/addon-svelte-csf/package.json' with { type: 'json' };
44
import { preprocess } from 'svelte/compiler';
5-
import type { IndexInput } from '@storybook/types';
5+
import type { IndexInput } from 'storybook/internal/types';
66

77
import { getSvelteAST, type ESTreeAST, type SvelteAST } from '$lib/parser/ast.js';
88
import { extractStoryAttributesNodes } from '$lib/parser/extract/svelte/story/attributes.js';

‎src/legacy-types.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {
66
Addon_BaseAnnotations as BaseAnnotations,
77
StoryContext,
88
WebRenderer,
9-
} from '@storybook/types';
9+
} from 'storybook/internal/types';
1010

1111
type DecoratorReturnType =
1212
| void

‎src/preset.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { StorybookConfig } from '@storybook/svelte-vite';
2-
import type { Options } from '@storybook/types';
2+
import type { Options } from 'storybook/internal/types';
33

44
import { transformPlugin, preTransformPlugin } from '$lib/compiler/plugins.js';
55
import { createIndexer } from '$lib/indexer/index.js';

‎src/runtime/emit-code.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { SourceType, SNIPPET_RENDERED } from '@storybook/docs-tools';
2-
import { addons } from '@storybook/preview-api';
1+
import { SourceType, SNIPPET_RENDERED } from 'storybook/internal/docs-tools';
2+
import { addons } from 'storybook/internal/preview-api';
33
import type { StoryObj } from '@storybook/svelte';
44
import { get } from 'es-toolkit/compat';
55
import type { ComponentProps } from 'svelte';

‎src/types.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { StoryContext } from '@storybook/types';
1+
import type { StoryContext } from 'storybook/internal/types';
22
import { createRawSnippet, type Component } from 'svelte';
33
import { describe, expectTypeOf, it } from 'vitest';
44

‎src/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {
33
StoryAnnotations as BaseStoryAnnotations,
44
StoryContext as BaseStoryContext,
55
WebRenderer,
6-
} from '@storybook/types';
6+
} from 'storybook/internal/types';
77
import type { Component, ComponentProps } from 'svelte';
88
import type { SetOptional, Simplify } from 'type-fest';
99

‎src/utils/error.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { SvelteAST } from '$lib/parser/ast.js';
66

77
/**
88
* Adopted from: {@link https://github.com/storybookjs/storybook/blob/next/code/lib/core-events/src/errors/storybook-error.ts}
9-
* Copied because is not exposed in the `@storybook/core-events` package,
9+
* Copied because is not exposed in the `storybook/internal/core-events` package,
1010
* and modified for this addon needs.
1111
*/
1212
export abstract class StorybookSvelteCSFError extends Error {

0 commit comments

Comments
 (0)
Please sign in to comment.