From 9be638a9933dae703e89ca1d67604b1775c17f91 Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:47:56 +0000 Subject: [PATCH 01/14] chore: Update biome to 0.0.24 --- biome.json | 5 +++++ package.json | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..79aef19 --- /dev/null +++ b/biome.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "@michijs/shared-configs/biome" + ] +} \ No newline at end of file diff --git a/package.json b/package.json index bafd3f4..518f298 100644 --- a/package.json +++ b/package.json @@ -21,9 +21,10 @@ "test-tsc-w": "tsc --noEmit --skipLibCheck -w" }, "devDependencies": { - "@michijs/tsconfig": "0.0.5", "@michijs/dev-server": "0.8.7", + "@michijs/shared-configs": "0.0.24", "@michijs/storybook-utils": "8.4.7", + "@michijs/tsconfig": "0.0.5", "@storybook/addon-a11y": "10.0.8", "@storybook/addon-controls": "9.0.8", "@storybook/addon-docs": "10.0.8", From d5c1595e85671e9a057e18e2ff678b28bcbb5018 Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:48:10 +0000 Subject: [PATCH 02/14] chore: Autofixes --- .vscode/settings.json | 2 +- .vscode/tasks.json | 44 +++++++++++++++++++++---------------------- biome.json | 6 ++---- dist.tsconfig.json | 10 +++------- sandbox.config.json | 2 +- tsconfig.json | 13 +++---------- 6 files changed, 32 insertions(+), 45 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9f98ffb..a77bdc8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,6 +3,6 @@ "explorer.fileNesting.expand": false, "explorer.fileNesting.patterns": { "package.json": "README.md,.gitignore, tsconfig.json, rome.json, dist.tsconfig.json, LICENSE.md, package-lock.json, jest-puppeteer.config.js, michi.config.ts, sandbox.config.json", - "*.tsx": "$(capture).css, $(capture).css.ts, $(capture).html, $(capture).spec.ts, $(capture).spec.tsx, $(capture).stories.tsx, types.ts, constants.ts", + "*.tsx": "$(capture).css, $(capture).css.ts, $(capture).html, $(capture).spec.ts, $(capture).spec.tsx, $(capture).stories.tsx, types.ts, constants.ts" } } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 8024fa2..d3386d5 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,23 +1,23 @@ { - "version": "2.0.0", - "tasks": [ - { - "label": "run", - "type": "npm", - "script": "storybook", - "group": { - "kind": "test", - "isDefault": true - }, - }, - { - "label": "build", - "type": "npm", - "script": "build-storybook", - "group": { - "kind": "build", - "isDefault": true - }, - }, - ] -} \ No newline at end of file + "version": "2.0.0", + "tasks": [ + { + "label": "run", + "type": "npm", + "script": "storybook", + "group": { + "kind": "test", + "isDefault": true + } + }, + { + "label": "build", + "type": "npm", + "script": "build-storybook", + "group": { + "kind": "build", + "isDefault": true + } + } + ] +} diff --git a/biome.json b/biome.json index 79aef19..8f75555 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,3 @@ { - "extends": [ - "@michijs/shared-configs/biome" - ] -} \ No newline at end of file + "extends": ["@michijs/shared-configs/biome"] +} diff --git a/dist.tsconfig.json b/dist.tsconfig.json index eeb2551..406885c 100644 --- a/dist.tsconfig.json +++ b/dist.tsconfig.json @@ -1,9 +1,5 @@ { "extends": "@michijs/tsconfig/tsconfig.json", - "include": [ - "src" - ], - "exclude" : [ - "src/**/*.stories.tsx" - ] -} \ No newline at end of file + "include": ["src"], + "exclude": ["src/**/*.stories.tsx"] +} diff --git a/sandbox.config.json b/sandbox.config.json index 46cc7c6..12555da 100644 --- a/sandbox.config.json +++ b/sandbox.config.json @@ -6,4 +6,4 @@ "port": 6006, "disableLogging": true, "container": { "port": 6006, "startScript": "storybook", "node": "16" } -} \ No newline at end of file +} diff --git a/tsconfig.json b/tsconfig.json index 79536ec..e213988 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,5 @@ { "extends": "@michijs/tsconfig/tsconfig.json", - "include": [ - ".storybook", - "src" - ], - "exclude": [ - "node_modules", - "dist", - "build" - ] -} \ No newline at end of file + "include": [".storybook", "src"], + "exclude": ["node_modules", "dist", "build"] +} From ea7a0725f953b164178f24bb082b12c447e46833 Mon Sep 17 00:00:00 2001 From: "michijs-dependabot[bot]" <227629590+michijs-dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:48:27 +0000 Subject: [PATCH 03/14] Linting changes --- biome.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 biome.json diff --git a/biome.json b/biome.json deleted file mode 100644 index 8f75555..0000000 --- a/biome.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": ["@michijs/shared-configs/biome"] -} From 0ca27527a34dbd4c6f4afe3f2521527c30e9498d Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:48:55 +0000 Subject: [PATCH 04/14] chore: Update biome to 0.0.24 --- biome.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..79aef19 --- /dev/null +++ b/biome.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "@michijs/shared-configs/biome" + ] +} \ No newline at end of file From d9c20ffc92fdf5bf187f06b0f215f203548c396b Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:49:24 +0000 Subject: [PATCH 05/14] chore: Autofixes --- biome.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/biome.json b/biome.json index 79aef19..8f75555 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,3 @@ { - "extends": [ - "@michijs/shared-configs/biome" - ] -} \ No newline at end of file + "extends": ["@michijs/shared-configs/biome"] +} From 36c654ede3c5b8c7b817ed6956da206ad90f95f6 Mon Sep 17 00:00:00 2001 From: "michijs-dependabot[bot]" <227629590+michijs-dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:49:40 +0000 Subject: [PATCH 06/14] Linting changes --- biome.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 biome.json diff --git a/biome.json b/biome.json deleted file mode 100644 index 8f75555..0000000 --- a/biome.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": ["@michijs/shared-configs/biome"] -} From f0e546df20a3da3d280cc6ac191ca6ae782cc41c Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:50:54 +0000 Subject: [PATCH 07/14] chore: Update biome to 0.0.24 --- biome.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..79aef19 --- /dev/null +++ b/biome.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "@michijs/shared-configs/biome" + ] +} \ No newline at end of file From 12b0a9170ff432848499cc1ce6df63b1c0b3bfbe Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:51:12 +0000 Subject: [PATCH 08/14] chore: Autofixes --- biome.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/biome.json b/biome.json index 79aef19..8f75555 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,3 @@ { - "extends": [ - "@michijs/shared-configs/biome" - ] -} \ No newline at end of file + "extends": ["@michijs/shared-configs/biome"] +} From ec94c7afadf80bbc9e79bc4d66b70c82b75f6502 Mon Sep 17 00:00:00 2001 From: "michijs-dependabot[bot]" <227629590+michijs-dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:51:28 +0000 Subject: [PATCH 09/14] Linting changes --- biome.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 biome.json diff --git a/biome.json b/biome.json deleted file mode 100644 index 8f75555..0000000 --- a/biome.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": ["@michijs/shared-configs/biome"] -} From 9fd5d54087b4553b9360a8e7cdab25fa8bfe1059 Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:53:31 +0000 Subject: [PATCH 10/14] chore: Update biome to 0.0.24 --- biome.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..79aef19 --- /dev/null +++ b/biome.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "@michijs/shared-configs/biome" + ] +} \ No newline at end of file From b861b3d9aaa1a76b646de8a235131a1357569391 Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:53:49 +0000 Subject: [PATCH 11/14] chore: Autofixes --- biome.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/biome.json b/biome.json index 79aef19..8f75555 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,3 @@ { - "extends": [ - "@michijs/shared-configs/biome" - ] -} \ No newline at end of file + "extends": ["@michijs/shared-configs/biome"] +} From b54733a29a121252cf1dfdfe67c0b10788405544 Mon Sep 17 00:00:00 2001 From: "michijs-dependabot[bot]" <227629590+michijs-dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:54:06 +0000 Subject: [PATCH 12/14] Linting changes --- biome.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 biome.json diff --git a/biome.json b/biome.json deleted file mode 100644 index 8f75555..0000000 --- a/biome.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": ["@michijs/shared-configs/biome"] -} From 4889f55aba7a753d1417f45743ea626a2e8cd9bb Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:54:57 +0000 Subject: [PATCH 13/14] chore: Update biome to 0.0.24 --- biome.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..79aef19 --- /dev/null +++ b/biome.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "@michijs/shared-configs/biome" + ] +} \ No newline at end of file From f6cf69bb87fb73ae09b99bfcc6db69c1b663e29b Mon Sep 17 00:00:00 2001 From: "michijs[bot]" <235342604+michijs[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:55:17 +0000 Subject: [PATCH 14/14] chore: Autofixes --- biome.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/biome.json b/biome.json index 79aef19..8f75555 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,3 @@ { - "extends": [ - "@michijs/shared-configs/biome" - ] -} \ No newline at end of file + "extends": ["@michijs/shared-configs/biome"] +}