我可以使用“npm run watch”监视当前目录之外的文件吗?
我使用两个存储库;一个包含源代码,一个使用 CucumberJS 进行 E2E 测试:
- application-repo/
- application-e2e/
我想在第二个存储库中运行 npm run watch
并等待第一个存储库中文件的更改;因为我想让我的 CucumberJS 测试在源代码的更改上运行。我工作的地方要求我不要将 e2e 测试与源代码放在同一个存储库中。
类似的问题,但使用 pm2
而不是 npm-watch
/ watch
: 使用 pm2 监视当前目录之外的文件
I work with two repo's; one with source code and one with E2E tests using CucumberJS:
- application-repo/
- application-e2e/
I would like to run npm run watch
in the second repo and wait for changes to files in the first repo; because I want to have my CucumberJS tests run on changes to the source-code. The place I work dictate me not to have the e2e-tests in the same repo, as the source code.
Similar question, but with pm2
instead of npm-watch
/ watch
:
Watch files outside the current directory using pm2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这比我想象的要容易得多,至少在使用
watch
而不是npm-watch
时是这样,但可能两者都可以以相同的方式使用。这是我的第二个存储库的
package.json
:在第二个存储库中运行
npm run watch
时,第一个存储库中所做的更改将使其写入hello 在第二个存储库的终端中。
It was a lot easier than I thought, at least when using
watch
and notnpm-watch
, but probably both can be used the same way.Here's my
package.json
of the second repo:When running
npm run watch
in the second repo, changes made in the first repo will make it writehello
in the terminal of the second repo.