Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Update storybook pkg #115

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 10 additions & 8 deletions package.json
Expand Up @@ -61,9 +61,11 @@
"@auto-it/first-time-contributor": "^10.31.0",
"@auto-it/released": "^10.31.0",
"@size-limit/preset-small-lib": "^4.10.1",
"@storybook/addons": "^6.4.0",
"@storybook/client-api": "^6.4.0",
"@storybook/react": "^6.4.0",
"@storybook/addons": "^6.5.10",
"@storybook/client-api": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/store": "^6.5.10",
"@types/react": "^18.0.17",
"auto": "^10.31.0",
"concurrently": "^6.0.0",
"husky": "^5.1.3",
Expand All @@ -74,10 +76,10 @@
"typescript": "^4.2.3"
},
"peerDependencies": {
"@storybook/addons": ">=6.4.0",
"@storybook/client-api": ">=6.4.0",
"@storybook/preview-web": ">=6.4.0",
"@storybook/react": ">=6.4.0",
"@storybook/addons": ">=6.5.0",
"@storybook/client-api": ">=6.5.0",
"@storybook/preview-web": ">=6.5.0",
"@storybook/react": ">=6.5.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"resolutions": {
Expand All @@ -96,6 +98,6 @@
"onlyPublishWithReleaseLabel": true
},
"dependencies": {
"@storybook/csf": "0.0.2--canary.87bc651.0"
"@storybook/csf": "0.0.2--canary.4566f4d.1"
}
}
2 changes: 1 addition & 1 deletion src/types.ts
@@ -1,5 +1,5 @@
import type { BaseAnnotations, BaseStoryFn as OriginalBaseStoryFn } from '@storybook/addons';
import type { WebProjectAnnotations } from '@storybook/preview-web';
import type { WebProjectAnnotations } from '@storybook/store';
import type { StoryFn as OriginalStoryFn, StoryObj, Meta, Args,StoryContext, ReactFramework } from '@storybook/react';
import type { ReactElement } from 'react';

Expand Down
2 changes: 0 additions & 2 deletions tsconfig.json
Expand Up @@ -25,8 +25,6 @@
"jsx": "react",
// interop between ESM and CJS modules. Recommended by TS
"esModuleInterop": true,
// significant perf increase by skipping checking .d.ts files, particularly those in node_modules. Recommended by TS
"skipLibCheck": true,
// error out if import and file system have a casing mismatch. Recommended by TS
"forceConsistentCasingInFileNames": true,
// `tsdx build` ignores this option, but it is commonly used when type-checking separately with `tsc`
Expand Down