Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
1c715e2
fix(deps): lock file maintenance minor dependencies
renovate[bot] May 27, 2025
49c6af7
chore(ci): increase Node.js memory limit in CI workflow
quqjp May 27, 2025
7b63e36
chore(ci): increase Node.js memory limit to 8192 in CI workflow
quqjp May 27, 2025
08f8faf
chore(ci): set NODE_OPTIONS to increase Node.js memory limit in CI wo…
quqjp May 27, 2025
4edcd78
chore(ci): add RPT2_CLEAN environment variable to CI workflow
quqjp May 27, 2025
f428d26
chore(ci): update NODE_OPTIONS syntax for consistency in CI workflow
quqjp May 27, 2025
544eafc
feat(icons): add multiple new icon components and handle errors in co…
quqjp May 27, 2025
7498b75
fix(hooks): update useOutsideClick ref type to allow null values
quqjp May 27, 2025
7811848
chore(deps): add @types/react dependency version 19.1.6 to package.js…
quqjp Jun 1, 2025
1203261
feat(icons): add new icon components and update existing ones for con…
quqjp Jun 1, 2025
8949ca0
chore(eslint): add 'packages/component-icons/dist' to ignored paths i…
quqjp Jun 2, 2025
c7e5c6e
refactor(icons): change React import to type import in code generatio…
quqjp Jun 2, 2025
bb5f549
chore(eslint): expand ignored paths to include additional auto-genera…
quqjp Jun 2, 2025
e5054ab
chore(prettier): expand ignored paths to include additional icon Type…
quqjp Jun 2, 2025
9f68b94
chore(deps): add @babel/preset-typescript and related plugins to pack…
quqjp Jun 2, 2025
0b0e51f
fix(storybook): update React import in preview.ts and adjust import o…
quqjp Jun 2, 2025
815c63a
Merge pull request #384 from zenkigen/renovate/minor-dependencies-fix…
quqjp Jun 2, 2025
42e2709
Merge branch 'main' into renovate/minor-dependencies
quqjp Jun 2, 2025
6919976
Merge branch 'renovate/minor-dependencies' of github.com:zenkigen/zen…
quqjp Jun 2, 2025
092bb48
fix(codegen): update title element creation in SVG processing to use …
quqjp Jun 2, 2025
5622377
chore(ci): remove unnecessary environment variables from CI workflow
quqjp Jun 2, 2025
724731c
chore(deps): update Babel presets and add types for babel__preset-env
quqjp Jun 2, 2025
7a5804c
feat(icons): build icons
quqjp Jun 2, 2025
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
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.17.0
20.19.2
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.yarn/
**/dist
packages/component-icons/src/icon.tsx
packages/component-icons/src/icons/*.tsx
packages/component-icons/template.ejs
packages/component-config/style-dictionary/tokens.json
packages/component-config/style-dictionary/transformed-tokens.json
Expand Down
2 changes: 1 addition & 1 deletion .storybook/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { StorybookConfig } from '@storybook/react-vite';
import path from 'path';
import turbosnap from 'vite-plugin-turbosnap';
import { StorybookConfig } from '@storybook/react-vite';

const config: StorybookConfig = {
stories: ['../packages/**/*.stories.@(ts|tsx)', '../packages/**/*.mdx'],
Expand Down
5 changes: 4 additions & 1 deletion .storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import './globals.css';

import AXE_LOCALE_JA from 'axe-core/locales/ja.json';
import type { Preview } from '@storybook/react';
import AXE_LOCALE_JA from 'axe-core/locales/ja.json';
import React from 'react';
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(globalThis as any).React = React;

const preview: Preview = {
parameters: {
Expand Down
925 changes: 0 additions & 925 deletions .yarn/releases/yarn-4.4.1.cjs

This file was deleted.

948 changes: 948 additions & 0 deletions .yarn/releases/yarn-4.9.1.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ npmScopes:
zenkigen-inc:
npmAuthToken: '${NODE_AUTH_TOKEN-}'

yarnPath: .yarn/releases/yarn-4.4.1.cjs
yarnPath: .yarn/releases/yarn-4.9.1.cjs
9 changes: 8 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ const compat = new FlatCompat({

export default [
{
ignores: ['packages/component-ui/dist', 'packages/component-config/dist'],
ignores: [
// 自動生成されるファイルは無視
'packages/component-ui/dist',
'packages/component-config/dist',
'packages/component-icons/dist',
'packages/component-icons/src/icon.tsx',
'packages/component-icons/src/icons/*.tsx',
],
},
...fixupConfigRules(
compat.extends(
Expand Down
97 changes: 75 additions & 22 deletions mcp-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions mcp-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"inspector": "npx @modelcontextprotocol/inspector node build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.10.1",
"zod": "3.24.3"
"@modelcontextprotocol/sdk": "1.12.0",
"zod": "3.25.30"
},
"devDependencies": {
"@types/node": "20.17.30",
"@types/node": "20.17.50",
"typescript": "5.8.3"
}
}
67 changes: 36 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zenkigen-component",
"private": true,
"packageManager": "yarn@4.4.1",
"packageManager": "yarn@4.9.1",
"workspaces": [
"packages/*"
],
Expand All @@ -19,40 +19,45 @@
"clean": "rimraf node_modules"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.9.1",
"@babel/core": "7.27.1",
"@babel/preset-env": "7.27.2",
"@babel/preset-react": "7.27.1",
"@babel/preset-typescript": "7.27.1",
"@eslint/compat": "1.2.9",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.27.0",
"@storybook/addon-a11y": "8.2.9",
"@storybook/addon-essentials": "8.2.9",
"@storybook/addon-interactions": "8.2.9",
"@storybook/addon-links": "8.2.9",
"@storybook/preview-api": "8.2.9",
"@storybook/react": "8.2.9",
"@storybook/react-vite": "8.2.9",
"@types/node": "20.16.2",
"@types/react-dom": "19.0.4",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.20",
"babel-loader": "9.1.3",
"eslint": "9.9.1",
"@storybook/addon-essentials": "8.6.14",
"@storybook/addon-interactions": "8.6.14",
"@storybook/addon-links": "8.6.14",
"@storybook/preview-api": "8.6.14",
"@storybook/react": "8.6.14",
"@storybook/react-vite": "8.6.14",
"@types/babel__preset-env": "7.10.0",
"@types/node": "20.17.50",
"@types/react": "19.1.6",
"@types/react-dom": "19.1.5",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"@vitejs/plugin-react": "4.5.0",
"autoprefixer": "10.4.21",
"babel-loader": "9.2.1",
"eslint": "9.27.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-tailwindcss": "3.17.4",
"globals": "15.9.0",
"postcss": "8.4.41",
"prettier": "3.3.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"eslint-plugin-storybook": "0.12.0",
"eslint-plugin-tailwindcss": "3.18.0",
"globals": "15.15.0",
"postcss": "8.5.3",
"prettier": "3.5.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"rimraf": "6.0.1",
"storybook": "8.2.9",
"tailwindcss": "3.4.10",
"typescript": "5.5.4",
"storybook": "8.6.14",
"tailwindcss": "3.4.17",
"typescript": "5.8.3",
"vite": "5.4.19",
"vite-plugin-turbosnap": "1.0.3"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/component-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"devDependencies": {
"microbundle": "0.15.1",
"style-dictionary": "3.9.2",
"tailwindcss": "3.4.10",
"tailwindcss": "3.4.17",
"token-transformer": "0.0.33",
"typescript": "5.5.4"
"typescript": "5.8.3"
},
"dependencies": {
"@zenkigen-inc/component-theme": "1.14.4"
Expand Down
Loading