Commit d709702
authored
chore(deps): avoid packages/testing local deps out of sync (#6190)
See #6188.
The `packages/testing` package has dev dependencies on `packages/build` and
`packages/config`, but these also have (undeclared) dev dependencies on
`packages/testing`.
Since our release-please configuration does not include `packages/testing` at all (there's
nothing to release; it's a "local package" only), major bumps to either of its
dependencies results in `packages/testing` no longer pulling in their local versions and
instead pulls in a duplicated previous published version from the NPM registry.
This in turn results in `@netlify/config` and/or `@netlify/build` not actually testing
their own source, since they use `packages/testing` to test themselves...
This is a confusing mess, and [declaring the missing dependencies does not
work](#6133) because `nx` detects the circular
dependency and aborts 😭.
This prevents the problem from reoccuring.1 parent 0262e3b commit d709702
2 files changed
+4
-4
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
20 | | - | |
| 19 | + | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
0 commit comments