From 4a55e7a0aa2fda5b48b8e2cb3624230b53491e87 Mon Sep 17 00:00:00 2001 From: Takashi Sugimoto Date: Fri, 27 Dec 2024 14:32:09 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80:=20Publish=202024.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../learn/getting-started/create-project.md | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/website/docs/react-native/learn/getting-started/create-project.md b/website/docs/react-native/learn/getting-started/create-project.md index 60d48a411b..fe511d2bb3 100644 --- a/website/docs/react-native/learn/getting-started/create-project.md +++ b/website/docs/react-native/learn/getting-started/create-project.md @@ -21,26 +21,17 @@ title: プロジェクトの作成 ::: ```bash -npx react-native@0.75.4 init --npm --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} +npx @react-native-community/cli init --pm npm --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} ``` RN Spoilerは、Expoの[テンプレート](https://github.com/expo/expo/tree/master/templates)をベースにしているので、このあとの[アプリの実行](./launch-created-app.mdx)で紹介しているExpo Goで動作します。 :::info -[npm](https://www.npmjs.com/)ではなく[Yarn](https://yarnpkg.com/)を利用したい場合は、`--npm`というオプションを削除してください。Yarnがインストールされている場合は、Yarnを利用してパッケージがインストールされます。 - -```bash -npx react-native@0.75.4 init --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} -``` - -::: - -:::info -初めて`npx react-native@0.75.4 init ...`を実行すると、次のように不足しているパッケージをインストールするかと聞かれます。`react-native`をインストールしようとしていれば問題ないので、エンターキーを押して実行してください。 +初めて`npx @react-native-community/cli init ...`を実行すると、次のように不足しているパッケージをインストールするかと聞かれます。`@react-native-community/cli`をインストールしようとしていれば問題ないので、エンターキーを押して実行してください。 ```console Need to install the following packages: - react-native + @react-native-community/cli Ok to proceed? (y) ```