Skip to content

Commit a7d4d8b

Browse files
authored
Xcodeのインストールの動画をNode.jsのセクションに追加 (#733)
1 parent 873ed97 commit a7d4d8b

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

docs/3-web-servers/03-node-js/index.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: はじめての Node.js
33
---
44

5+
import installCommandLineDeveloperToolsVideo from "./install-command-line-developer-tools.mp4";
56
import installNvmInWslVideo from "./install-nvm-in-wsl.mp4";
67
import installNvmInMacVideo from "./install-nvm-in-mac.mp4";
78
import openFolderInWslVideo from "./open-folder-in-wsl.mp4";
@@ -13,6 +14,14 @@ import debuggingVideo from "./debugging.mp4";
1314

1415
Node.js をインストールする方法は様々ですが、現在は [nvm](https://github.com/nvm-sh/nvm) と呼ばれるツールが用いられることが多いようです。
1516

17+
macOS の場合は、先に次のコマンドを実行してコマンドラインデベロッパツールをインストールする必要があります。
18+
19+
```shell
20+
xcode-select --install
21+
```
22+
23+
<video src={installCommandLineDeveloperToolsVideo} controls />
24+
1625
まずは、[nvm のウェブサイトの `Install & Update Script` セクション](https://github.com/nvm-sh/nvm#install--update-script)に書かれているスクリプトを実行しましょう。2024 年 5 月現在では、次の通りです。
1726

1827
```shell
Binary file not shown.

docs/3-web-servers/10-git-github-init/index.mdx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: Git と GitHub のセットアップ
33
---
44

5-
import installCommandLineDeveloperToolsVideo from "./install-command-line-developer-tools.mp4";
65
import registerGitHubVideo from "./register-github.mp4";
76
import setupGitVideo from "./setup-git.mp4";
87
import addSshKeyVideo from "./add-ssh-key.mp4";
@@ -15,17 +14,7 @@ import addSshKeyVideo from "./add-ssh-key.mp4";
1514

1615
## Git のインストール
1716

18-
<Tabs groupId="os">
19-
<TabItem value="mac" label="macOS">
20-
macOS の場合は、コマンドラインデベロッパツールが必要な場合があります。
21-
22-
<video src={installCommandLineDeveloperToolsVideo} controls muted />
23-
24-
</TabItem>
25-
<TabItem value="win" label="Windows (WSL)">
26-
WSL を利用する場合は Git は標準搭載なので追加でインストールする必要はありません。
27-
</TabItem>
28-
</Tabs>
17+
macOS と WSL のいずれも、Git は標準搭載なので追加でインストールする必要はありません。
2918

3019
## Git の拡張機能のインストール
3120

Binary file not shown.

0 commit comments

Comments
 (0)