Skip to content
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
5 changes: 0 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ jobs:
node-version: 22
cache: 'npm'

- name: Update npm
run: |
npm install -g npm@11.7.0
npm -v

- name: Install dependencies
run: npm ci

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ node_modules
dist
dist-types
addon
storybook-static
.adnbn
dist-ssr
*.local
Expand Down
2 changes: 1 addition & 1 deletion .storybook/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import path from "path";
import merge from "webpack-merge";
import {merge} from "webpack-merge";
import type {StorybookConfig} from "storybook-react-rsbuild";

const config: StorybookConfig = {
Expand Down
2 changes: 1 addition & 1 deletion .storybook/preview.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, {useEffect} from "react";
import type {Preview, StoryContext, StoryFn} from "@storybook/react";
import type {Preview, StoryContext, StoryFn} from "storybook-react-rsbuild";
import {ThemeProvider} from "../src/providers";
import "../src/providers/ui/styles/default.scss";
import "../src/providers/ui/styles/reset.scss";
Expand Down
7 changes: 6 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// For more info, see https://github.com/storybookjs/eslint-plugin-storybook#configuration-flat-config-format
import storybook from "eslint-plugin-storybook";

import js from "@eslint/js";
import tseslint from "typescript-eslint";

Expand All @@ -19,6 +22,7 @@ export default tseslint.config(
".storybook",
"public",
"*.config.js",
"storybook-static",
],
},
{
Expand All @@ -36,5 +40,6 @@ export default tseslint.config(
...reactHooks.configs.recommended.rules,
"react-refresh/only-export-components": "off",
},
}
},
storybook.configs["flat/recommended"]
);
Loading
Loading