0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【React】下層にあるpackage.jsonに書いてあるコマンドを実行したい場合

Posted at

はじめに

こんにちは、エンジニアのkeitaMaxです。

今回は、下層にあるpackage.jsonに書いてあるコマンドを実行したい場合があったので、その方法について調べたことをまとめてみます。

ディレクトリ構成

app
├ src
│   └package.json
└package.json

appの直下にあるpackage.jsonのコマンドを実行させることで、app/srcにあるpackage.jsonのコマンドを実行させたかったです。

実装方法

app/package.json
  "scripts": {
    "lint": "npm --prefix ./src run lint"
  }

こんな感じで--prefixを使用することで実現することができました。

おわりに

この記事での質問や、間違っている、もっといい方法があるといったご意見などありましたらご指摘していただけると幸いです。

最後まで読んでいただきありがとうございました!

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?