Skip to content

Commit

Permalink
🩹: 最新のreact-nativeコマンドで動かないのでv0.75.4を明示 (#165)
Browse files Browse the repository at this point in the history
## ✅ What's done

- [x] npx react-nativeコマンドにversionを明示(@0.75.4)
   - 理由: v0.76.0以降だと失敗するようになったため

## ⏸ What's not done

- 恒久対応(2024/12/31までに必要)
  • Loading branch information
tksugimoto authored Nov 26, 2024
1 parent e1bb0e2 commit b5a9a2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $ npm ls -g --depth=0
次のコマンドを実行して、新規プロジェクトを作成できます。

```bash
npx react-native init --template https://github.com/ws-4020/rn-spoiler.git <YourAppName>
npx react-native@0.75.4 init --template https://github.com/ws-4020/rn-spoiler.git <YourAppName>
```

`<YourAppName>` に設定した名前でディレクトリが作成されます。
Expand Down
2 changes: 1 addition & 1 deletion example/hands-on/create-hands-on-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async function main() {

// rn-spoilerをテンプレートとして、新規アプリを作成
await execute(generatedDir,
`npx react-native init --npm --template ${options.template} ${appName}`);
`npx react-native@0.75.4 init --npm --template ${options.template} ${appName}`);

// npm7以上の場合は、エラーが発生するので対処
// https://github.com/ws-4020/rn-spoiler#%E6%96%B0%E8%A6%8F%E3%83%97%E3%83%AD%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%E3%81%AE%E4%BD%9C%E6%88%90
Expand Down

0 comments on commit b5a9a2f

Please sign in to comment.