開発者がpod install
を実行する際によくある問題を削減するための高速でゼロ依存のパッケージ。
使用法
npx pod-install
👋 お知らせ。 このパッケージはネイティブの React プロジェクトに限らず、CocoaPods を使用する iOS または Xcode プロジェクト (Ionic や Flutter など) で使用できます。
🤔なぜですか?
すべてのネイティブ パッケージ (特に NPM でインストールされたもの) は、しばしば次のような説明が必要です:
- What is CocoaPods.
- What is gem.
- How to install CocoaPods.
-
cd
をpod install
実行前に適切なディレクトリにインストールする方法について。 - You may need to run
pod repo update
to fix your project. - Why CocoaPods requires a darwin machine.
But now you simply instruct users to run npx pod-install
.But you can be simply to run npx pod-install
.If you want to do it?
このパッケージは以下を行います:
- Check if the machine is darwin.
- If not then it’s quit with a helpful error message.
- Ensure CocoaPods CLI is installed on the machine. CocoaPods がインストールされたマシン。
- でない場合、まず gem で、次に homebrew で CocoaPods CLI をインストールしようとします。
- Check if an Xcode project in the current directory
- If not then will try again in an
ios/
directory (if one exists).
- If not then will try again in an
- Run
pod install
- repo が古いため
pod install
が失敗したら、pod repo update
を実行して再試行します。
⚙️オプション
詳細は
npx pod-install --help
(または-h
)を実行してください。 Flag Input Description Default --non-interactive
Skip prompting to install CocoaPods with sudo process.stdout.isTTY
--quiet
Only print errors
false
License
- repo が古いため