Skip to content

Commit 806a1bf

Browse files
authored
Merge pull request #51 from traP-jp/feat/add-asterisk
naro-rsで変更したセクションにアスタリスクを付けた
2 parents 348ab6e + a6e6d00 commit 806a1bf

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

docs/.vitepress/sidebarConfigs/chapters/chapter1/dicts/clean-code.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { DefaultTheme } from 'vitepress'
22

33
export const cleanCodeSidebarItems: DefaultTheme.SidebarItem[] = [
44
{
5-
text: 'きれいなコードを書くために',
5+
text: 'きれいなコードを書くために*',
66
link: '/chapter1/dicts/clean-code/0_index'
77
}
88
]
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import type { DefaultTheme } from 'vitepress'
22

33
export const section1SidebarItems: DefaultTheme.SidebarItem[] = [
4-
{ text: '環境構築 (windows)', link: '/chapter1/section1/0_setup-windows' },
5-
{ text: '環境構築 (macOS)', link: '/chapter1/section1/1_setup-unix' },
4+
{ text: '環境構築 (windows)*', link: '/chapter1/section1/0_setup-windows' },
5+
{ text: '環境構築 (macOS)*', link: '/chapter1/section1/1_setup-unix' },
66
{
7-
text: 'Rust で Hello World',
7+
text: 'Rust で Hello World*',
88
link: '/chapter1/section1/2_hello-world'
99
}
1010
]

docs/.vitepress/sidebarConfigs/chapters/chapter1/sections/section3.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ import type { DefaultTheme } from 'vitepress'
22

33
export const section3SidebarItems: DefaultTheme.SidebarItem[] = [
44
{
5-
text: 'サーバーアプリケーションを作る',
5+
text: 'サーバーアプリケーションを作る*',
66
link: '/chapter1/section3/0_hello-server'
77
},
88
{
9-
text: 'JSONレスポンスを返す',
9+
text: 'JSONレスポンスを返す*',
1010
link: '/chapter1/section3/1_json-response'
1111
},
1212
{
13-
text: 'ルーティング',
13+
text: 'ルーティング*',
1414
link: '/chapter1/section3/2_rooting'
1515
},
1616
{
17-
text: 'サーバー演習問題',
17+
text: 'サーバー演習問題*',
1818
link: '/chapter1/section3/3_server-exercise'
1919
}
2020
]

docs/.vitepress/sidebarConfigs/chapters/chapter1/sections/section4.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { DefaultTheme } from 'vitepress'
22

33
export const section4SidebarItems: DefaultTheme.SidebarItem[] = [
44
{
5-
text: 'データベースを扱う準備',
5+
text: 'データベースを扱う準備*',
66
link: '/chapter1/section4/0_prepare'
77
},
88
{
@@ -14,11 +14,11 @@ export const section4SidebarItems: DefaultTheme.SidebarItem[] = [
1414
link: '/chapter1/section4/2_sql_exercise'
1515
},
1616
{
17-
text: 'Rustでデータベースを扱う',
17+
text: 'Rustでデータベースを扱う*',
1818
link: '/chapter1/section4/3_rust_and_db'
1919
},
2020
{
21-
text: 'サーバーからデータベースを扱う',
21+
text: 'サーバーからデータベースを扱う*',
2222
link: '/chapter1/section4/4_server_and_db'
2323
}
2424
]

docs/.vitepress/sidebarConfigs/chapters/chapter2/sections/section1.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import type { DefaultTheme } from 'vitepress'
77
// ]
88

99
export const section1SidebarItems: DefaultTheme.SidebarItem[] = [
10-
{ text: 'プロジェクトのセットアップ', link: '/chapter2/section1/0_setup' },
11-
{ text: 'アカウント機能の実装', link: '/chapter2/section1/1_account' },
12-
{ text: 'セッションの実装', link: '/chapter2/section1/2_session' },
13-
{ text: '検証', link: '/chapter2/section1/3_verify' },
10+
{ text: 'プロジェクトのセットアップ*', link: '/chapter2/section1/0_setup' },
11+
{ text: 'アカウント機能の実装*', link: '/chapter2/section1/1_account' },
12+
{ text: 'セッションの実装*', link: '/chapter2/section1/2_session' },
13+
{ text: '検証*', link: '/chapter2/section1/3_verify' },
1414
{ text: 'おまけ演習問題', link: '/chapter2/section1/4_extra' }
1515
]

docs/.vitepress/sidebarConfigs/chapters/chapter2/sections/section2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ import type { DefaultTheme } from 'vitepress'
33
export const section2SidebarItems: DefaultTheme.SidebarItem[] = [
44
{ text: 'vue-routerの設定', link: '/chapter2/section2/0_router-setup' },
55
{ text: 'プロキシの設定', link: '/chapter2/section2/1_proxy' },
6-
{ text: 'サーバーとの通信', link: '/chapter2/section2/2_fetch' }
6+
{ text: 'サーバーとの通信*', link: '/chapter2/section2/2_fetch' }
77
]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { DefaultTheme } from 'vitepress'
22

33
export const section3SidebarItems: DefaultTheme.SidebarItem[] = [
4-
{ text: 'テストを書いてみよう', link: '/chapter2/section3/0_test' },
5-
{ text: '自動でテストを実行してみよう', link: '/chapter2/section3/1_ci' }
4+
{ text: 'テストを書いてみよう*', link: '/chapter2/section3/0_test' },
5+
{ text: '自動でテストを実行してみよう*', link: '/chapter2/section3/1_ci' }
66
]

docs/.vitepress/sidebarConfigs/chapters/chapter2/sections/section4.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const section4SidebarItems: DefaultTheme.SidebarItem[] = [
66
link: '/chapter2/section4/0_commands'
77
},
88
{
9-
text: 'Dockerイメージを作る',
9+
text: 'Dockerイメージを作る*',
1010
link: '/chapter2/section4/1_image'
1111
},
1212
{

docs/.vitepress/sidebarConfigs/chapters/webBasic/webBasic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const webBasicSidebarItems: DefaultTheme.SidebarItem[] = [
66
items: [
77
{ text: 'はじめに', link: '/web_basic/0_index' },
88
{ text: '第1回 | フロントエンド', link: '/web_basic/1_frontend' },
9-
{ text: '第2回 | バックエンド', link: '/web_basic/2_backend' }
9+
{ text: '第2回 | バックエンド*', link: '/web_basic/2_backend' }
1010
]
1111
}
1212
]

0 commit comments

Comments
 (0)