From 592e9fb5ea4897f5f294a991002c5e068b1e966a Mon Sep 17 00:00:00 2001 From: Takashi Sugimoto <13145001+tksugimoto@users.noreply.github.com> Date: Mon, 25 Nov 2024 17:33:05 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D:=20fix:=20npx=20react-native=20ini?= =?UTF-8?q?t=20=E3=81=8C=E5=A4=B1=E6=95=97=E3=81=99=E3=82=8B=E5=95=8F?= =?UTF-8?q?=E9=A1=8C=E3=81=AB=E6=9A=AB=E5=AE=9A=E5=AF=BE=E5=87=A6=20(#1331?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## ✅ What's done - [x] [プロジェクトの作成 | Fintan » Mobile App Development](https://ws-4020.github.io/mobile-app-crib-notes/react-native/learn/getting-started/create-project/) の `npx react-native`コマンドにversionを明示(`@0.75.4`) - 理由: v0.76.0以降だと失敗するようになったため ## ⏸ What's not done - 恒久対応(2024/12/31までに必要) --- .../react-native/learn/getting-started/create-project.md | 6 +++--- 1 file changed, 3 insertions(+), 3 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 e0f7a331e4..60d48a411b 100644 --- a/website/docs/react-native/learn/getting-started/create-project.md +++ b/website/docs/react-native/learn/getting-started/create-project.md @@ -21,7 +21,7 @@ title: プロジェクトの作成 ::: ```bash -npx react-native init --npm --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} +npx react-native@0.75.4 init --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で動作します。 @@ -30,13 +30,13 @@ RN Spoilerは、Expoの[テンプレート](https://github.com/expo/expo/tree/ma [npm](https://www.npmjs.com/)ではなく[Yarn](https://yarnpkg.com/)を利用したい場合は、`--npm`というオプションを削除してください。Yarnがインストールされている場合は、Yarnを利用してパッケージがインストールされます。 ```bash -npx react-native init --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} +npx react-native@0.75.4 init --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} ``` ::: :::info -初めて`npx react-native init ...`を実行すると、次のように不足しているパッケージをインストールするかと聞かれます。`react-native`をインストールしようとしていれば問題ないので、エンターキーを押して実行してください。 +初めて`npx react-native@0.75.4 init ...`を実行すると、次のように不足しているパッケージをインストールするかと聞かれます。`react-native`をインストールしようとしていれば問題ないので、エンターキーを押して実行してください。 ```console Need to install the following packages: