Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade storybook #23

Merged
merged 2 commits into from
Aug 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ module.exports = {
"@typescript-eslint/explicit-module-boundary-types": "off",
"eslint-comments/disable-enable-pair": "off",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error"
"simple-import-sort/exports": "error",
"import/order": "off",
},
parser: "@typescript-eslint/parser",
parserOptions: {
Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"test": "jest"
},
"dependencies": {
"@storybook/csf-tools": "^7.2.0-alpha.0",
"@storybook/csf-tools": "^7.2.0",
"@storybook/design-system": "^7.15.11",
"chromatic": "^6.19.8",
"date-fns": "^2.30.0",
Expand All @@ -67,17 +67,17 @@
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/client-preset": "^4.0.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@storybook/addon-actions": "^7.2.0-alpha.0",
"@storybook/addon-essentials": "^7.2.0-alpha.0",
"@storybook/addon-interactions": "^7.2.0-alpha.0",
"@storybook/addon-mdx-gfm": "^7.2.0-alpha.0",
"@storybook/channels": "^7.2.0-alpha.0",
"@storybook/addon-actions": "^7.2.0",
"@storybook/addon-essentials": "^7.2.0",
"@storybook/addon-interactions": "^7.2.0",
"@storybook/addon-mdx-gfm": "^7.2.0",
"@storybook/channels": "^7.2.0",
"@storybook/eslint-config-storybook": "^3.1.2",
"@storybook/manager-api": "^7.2.0-alpha.0",
"@storybook/react": "^7.2.0-alpha.0",
"@storybook/react-vite": "^7.2.0-alpha.0",
"@storybook/manager-api": "^7.2.0",
"@storybook/react": "^7.2.0",
"@storybook/react-vite": "^7.2.0",
"@storybook/testing-library": "^0.2.1-next.0",
"@storybook/theming": "^7.2.0-alpha.0",
"@storybook/theming": "^7.2.0",
"@types/jest": "^29.5.3",
"@types/node": "^18.15.0",
"@types/pluralize": "^0.0.29",
Expand All @@ -103,7 +103,7 @@
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"storybook": "^7.2.0-alpha.0",
"storybook": "^7.2.0",
"storybook-addon-designs": "^7.0.0-beta.2",
"ts-jest": "^29.1.1",
"tsup": "^6.6.3",
Expand All @@ -113,13 +113,13 @@
"zx": "^1.14.1"
},
"peerDependencies": {
"@storybook/blocks": "^7.2.0-alpha.0",
"@storybook/components": "^7.2.0-alpha.0",
"@storybook/core-events": "^7.2.0-alpha.0",
"@storybook/manager-api": "^7.2.0-alpha.0",
"@storybook/preview-api": "^7.2.0-alpha.0",
"@storybook/theming": "^7.2.0-alpha.0",
"@storybook/types": "^7.2.0-alpha.0",
"@storybook/blocks": "^7.2.0",
"@storybook/components": "^7.2.0",
"@storybook/core-events": "^7.2.0",
"@storybook/manager-api": "^7.2.0",
"@storybook/preview-api": "^7.2.0",
"@storybook/theming": "^7.2.0",
"@storybook/types": "^7.2.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion public/mockServiceWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* tslint:disable */

/**
* Mock Service Worker (1.2.2).
* Mock Service Worker (1.2.3).
* @see https://github.com/mswjs/msw
* - Please do NOT modify this file.
* - Please do NOT serve this file on production.
Expand Down
1 change: 1 addition & 0 deletions src/screens/VisualTests/VisualTests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ interface VisualTestsProps {
lastDevBuildId?: string;
runDevBuild: () => void;
setAccessToken: (accessToken: string | null) => void;
// eslint-disable-next-line react/no-unused-prop-types
setIsOutdated: (isOutdated: boolean) => void;
setIsRunning: (isRunning: boolean) => void;
updateBuildStatus: (update: StatusUpdate) => void;
Expand Down
Loading
Loading