Skip to content
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
dd144ab
chore(deps): add tailwind
staticWagomU May 14, 2025
c855662
feat: v0をそのまま移植
staticWagomU May 16, 2025
e4570a1
feat: config.tsを読み込む
staticWagomU May 16, 2025
55e2bf9
fix: error
staticWagomU May 16, 2025
26b8266
feat: 不要なlinkを削除
staticWagomU May 16, 2025
2696b57
chore: format
staticWagomU May 16, 2025
c52d156
feat: `[lang]/`へ移動
staticWagomU May 16, 2025
ea89e1f
feat: もとにもどす
staticWagomU May 16, 2025
a5de292
fix: 重複しているため削除
staticWagomU May 16, 2025
4f719e3
feat: layoutからcssを読みこむ
staticWagomU May 17, 2025
0a9d500
style: formatが効かないので手動
staticWagomU May 17, 2025
fe00aca
chore(deps): add prettier
staticWagomU May 18, 2025
c1049b2
style: apply prettier format
staticWagomU May 18, 2025
eedd0c7
feat: 日本語を追加
staticWagomU May 19, 2025
f14cd92
chore: prettierの設定を追加
staticWagomU May 19, 2025
c0ef315
feat: 文言を調整
staticWagomU May 19, 2025
284dad2
fix: 命名のコンフリクトを解消
staticWagomU May 19, 2025
b3e805a
ci: prettierのコマンドを使うように修正
staticWagomU May 19, 2025
ff23867
chore: rename
staticWagomU May 19, 2025
7ea648c
feat: 一先ずsrc属性を削除
staticWagomU May 19, 2025
7921f44
feat: フッターの日本語を追加
staticWagomU May 19, 2025
b7476a3
chore: 未使用変数を削除
staticWagomU May 19, 2025
965bfee
feat: VimConf 2025 Smallへ変更
staticWagomU May 19, 2025
5dec3af
feat: iframeを追加
staticWagomU May 19, 2025
984707b
feat: 背景をぼかしてみやすく
staticWagomU May 20, 2025
2edcb1b
feat: 翻訳漏れ
staticWagomU May 20, 2025
2f21a30
feat: コンテンツに合わせてcolを調整
staticWagomU May 20, 2025
318aa7f
feat: コピーライトを削除
staticWagomU May 20, 2025
f668867
feat: レスポンシブ対応
staticWagomU May 20, 2025
726589f
feat: 変更忘れです
staticWagomU May 20, 2025
9dfae61
feat: また漏れてます。。。
staticWagomU May 20, 2025
d03d21b
feat: スタッフをコンポーネントとして再定義
staticWagomU May 20, 2025
fce2c0c
feat: スタッフをコンポーネントとして再定義
staticWagomU May 20, 2025
155a580
feat: レスポンシブ対応
staticWagomU May 20, 2025
942d1c2
style: apply prettier
staticWagomU May 20, 2025
ad12cca
fix: マーカーを削除
staticWagomU May 20, 2025
6fee8e9
feat: ヘッダーコンポーネント作成
staticWagomU May 20, 2025
f82a741
style: apply prettier
staticWagomU May 20, 2025
46a2e7c
refactor:
staticWagomU May 20, 2025
4eda3b7
feat: メニューリンク押下時にメニューを閉じる
staticWagomU May 20, 2025
201522b
feat: カードで囲む
staticWagomU May 21, 2025
1c50329
style: format
staticWagomU May 21, 2025
8d038ea
Merge branch 'main' into feature/2025-prod
staticWagomU May 22, 2025
048ca97
feat: スポンサーセクションを削除
staticWagomU May 22, 2025
29b4ed0
fix: higashiさんのXのURLを修正
staticWagomU May 22, 2025
a442fdc
feat: 参加登録ボタンをdisabledにする
staticWagomU May 22, 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 .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
version: 10.4.0
- run: pnpm install --frozen-lockfile
- run: pnpm check
- run: pnpm lint
- run: pnpm prettier:check
21 changes: 21 additions & 0 deletions 2025/.prettierrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// .prettierrc.mjs
/** @type {import("prettier").Config} */
export default {
plugins: ['prettier-plugin-astro', 'prettier-plugin-tailwindcss'],
tailwindStylesheet: 'src/styles/global.css',
tailwindConfig: 'tailwind.config.ts',
overrides: [
{
files: '*.astro',
options: {
parser: 'astro',
},
},
{
files: '*.svelte',
options: {
parser: 'svelte',
},
},
],
};
3 changes: 3 additions & 0 deletions 2025/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import react from '@astrojs/react';
import tailwindcss from '@tailwindcss/vite';

// @ts-check
import { defineConfig } from 'astro/config';

Expand All @@ -20,6 +22,7 @@ export default defineConfig({
},
plugins: [
Macros(),
tailwindcss(),
],
},

Expand Down
10 changes: 9 additions & 1 deletion 2025/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@
"astro": "astro",
"check": "astro check",
"lint": "eslint --cache .",
"format": "nr lint --fix"
"format": "nr lint --fix",
"prettier:check": "prettier --cache --check --plugin-search-dir=. src",
"prettier:fix": "prettier --cache --write --plugin-search-dir=. src"
},
"dependencies": {
"@astrojs/react": "^4.2.0",
"@tailwindcss/vite": "^4.1.6",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"astro": "^5.3.0",
Expand All @@ -23,6 +26,7 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"satori": "^0.12.1",
"tailwindcss": "^4.1.6",
"ufo": "^1.5.4"
},
"devDependencies": {
Expand All @@ -32,7 +36,11 @@
"eslint": "^9.20.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-format": "^1.0.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"sharp": "^0.33.5",
"tailwind-merge": "^3.3.0",
"typescript": "^5.7.3",
"unplugin-macros": "^0.16.0"
},
Expand Down
Loading