1
0

Update from 1.9.2 to 1.9.3 broke NodeJS 8 support #7

aberta(s)
2019-04-04 14:01:16 +00:00 aberta(s) por Ghost · 2 comentários

So lately I started receiving following problem:

[2/4] Fetching packages...

warning store@1.3.20: The engine "browser" appears to be invalid.

info fsevents@1.2.7: The platform "linux" is incompatible with this module.

info "fsevents@1.2.7" is an optional dependency and failed compatibility check. Excluding it from installation.

error rsa-compat@1.9.4: The engine "node" is incompatible with this module. Expected version ">=10.12".

error Found incompatible module

info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.

src/sf/Makefile:36: recipe for target 'install' failed

make: *** [install] Error 1

script returned exit code 2

It's caused by following update in rsa-compat

  "engines": {
    "node": ">=10.12"
  }

I think, this update is not semver-compliant because broke backward compatiblity

So lately I started receiving following problem: ``` [2/4] Fetching packages... warning store@1.3.20: The engine "browser" appears to be invalid. info fsevents@1.2.7: The platform "linux" is incompatible with this module. info "fsevents@1.2.7" is an optional dependency and failed compatibility check. Excluding it from installation. error rsa-compat@1.9.4: The engine "node" is incompatible with this module. Expected version ">=10.12". error Found incompatible module info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command. src/sf/Makefile:36: recipe for target 'install' failed make: *** [install] Error 1 script returned exit code 2 ``` It's caused by following update in rsa-compat ``` "engines": { "node": ">=10.12" } ``` I think, this update is not semver-compliant because broke backward compatiblity
Autor(a)

If someone has the same problem, I fixed it temporarly with:

  "resolutions": {
    "rsa-compat": "1.9.1"
  },
If someone has the same problem, I fixed it temporarly with: ``` "resolutions": { "rsa-compat": "1.9.1" }, ```
Proprietário(a)

That’s just yarn being a ninny.

It’ll work just fine if yarn would just let you install it.

I think I changed the node version in v2 and then back-ported an update and accidentally copied the version into v1.

That’s just yarn being a ninny. It’ll work just fine if yarn would just let you install it. I think I changed the node version in v2 and then back-ported an update and accidentally copied the version into v1.
Inicie a sessão para participar neste diálogo.
Sem rótulo
2 Participantes
Notificações
Data de vencimento
Sem data de vencimento definida.
Dependências

Não estão definidas dependências.

Referência: coolaj86/rsa-compat.js#7
Nenhuma descrição fornecida.