我可以使用“npm run watch”监视当前目录之外的文件吗?

发布于 2025-01-09 10:28:11 字数 458 浏览 0 评论 0原文

我使用两个存储库;一个包含源代码,一个使用 CucumberJS 进行 E2E 测试:

  1. application-repo/
  2. 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:

  1. application-repo/
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

中二柚 2025-01-16 10:28:11

这比我想象的要容易得多,至少在使用 watch 而不是 npm-watch 时是这样,但可能两者都可以以相同的方式使用。

这是我的第二个存储库的 package.json

{
  "name": "application-e2e",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "watch":"watch 'echo hello' ../application-repo/", // First repo

  (...)

在第二个存储库中运行 npm run watch 时,第一个存储库中所做的更改将使其写入 hello 在第二个存储库的终端中。

It was a lot easier than I thought, at least when using watch and not npm-watch, but probably both can be used the same way.

Here's my package.json of the second repo:

{
  "name": "application-e2e",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "watch":"watch 'echo hello' ../application-repo/", // First repo

  (...)

When running npm run watch in the second repo, changes made in the first repo will make it write hello in the terminal of the second repo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文