wechaty / matrix-appservice

Wechaty [Matrix] Application Services Bridge
https://matrix.org/docs/projects/bridge/matrix-appservice-wechaty
Apache License 2.0
131 stars 16 forks source link

Bump read-pkg-up from 7.0.1 to 8.0.0 #73

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 3 years ago

Bumps read-pkg-up from 7.0.1 to 8.0.0.

Release notes

Sourced from read-pkg-up's releases.

v8.0.0

Breaking

  • Require Node.js 12 e6fbe7f
  • This package now exports two named exports instead of a default export e6fbe7f
  • This package is now pure ESM. Please read this.

https://github.com/sindresorhus/read-pkg-up/compare/v7.0.1...v8.0.0

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
huan commented 2 years ago

The 8.0 is ESM only, it will conflict to be compatible with CJS.

Our module is ESM-CJS dual module, which means that we can not load ESM-only module when we are building the CJS version. (CJS can not load ESM, but not verse visa)

So this is the reason why this PR fail our pack testing.

We need to stick on the v7 to fix this.