Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typo in engines.node #136

Closed
perrefe opened this issue May 23, 2024 · 20 comments
Closed

typo in engines.node #136

perrefe opened this issue May 23, 2024 · 20 comments

Comments

@perrefe
Copy link

perrefe commented May 23, 2024

There is a typo in engine version specification in package.json for v0.4.16 release

"engines": {
    "node": ">=.0.12"
},
error [email protected]: The engine "node" is incompatible with this module. Expected version ">=.0.12". Got "20.11.1"
error Found incompatible module.

I'm using yarn v1.22.19 and node 20.11.1

I think it should be "node": ">=12.0"

thanks!

@NicoHinderling
Copy link

+1 im also facing this right now

@perrefe
Copy link
Author

perrefe commented May 23, 2024

Using npm 10.5.2 shows this warning

npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE   package: '[email protected]',
npm WARN EBADENGINE   required: { node: '>=.0.12' },
npm WARN EBADENGINE   current: { node: 'v20.13.1', npm: '10.5.2' }
npm WARN EBADENGINE }

@pcollaog
Copy link

+1

@Blari
Copy link

Blari commented May 23, 2024

As a temporary solution until the author fixes the typo, you can add the following to your package.json file:

For yarn install:

"resolutions": {
  "memoizee": "0.4.14"
}

For npm install:

"overrides": {
  "memoizee": "0.4.14"
}

@tsuyoda
Copy link

tsuyoda commented May 23, 2024

+1

@simlu
Copy link

simlu commented May 23, 2024

1a6989f

@diegodleon
Copy link

+1

@galaxyreal
Copy link

Thanks for @Blari 's solution.
Additionally, Memoizee 0.4.15 is working as well.

"resolutions": {
  "memoizee": "0.4.15"
}

@lynnzc
Copy link

lynnzc commented May 23, 2024

As a temporary solution until the author fixes the typo, you can add the following to your package.json file:

For yarn install:

"resolutions": {
  "memoizee": "0.4.14"
}

For npm install:

"overrides": {
  "memoizee": "0.4.14"
}

this works, 👍

@frederichoule
Copy link

+1

@DaniloMarques1
Copy link

Also facing the problem

@simlu
Copy link

simlu commented May 23, 2024

Duplicate fyi #135

@ACC-Ricky
Copy link

+1

2 similar comments
@97thjingba
Copy link

+1

@dan-scrumsdotcom
Copy link

+1

@thoroc
Copy link

thoroc commented May 24, 2024

PR in #137

@97thjingba
Copy link

PR in #137

It seems that it will take some time to merge and deploy

@chetankpr007
Copy link

+1

@medikoo
Copy link
Owner

medikoo commented May 24, 2024

Duplicate of #135

@medikoo medikoo marked this as a duplicate of #135 May 24, 2024
@medikoo medikoo closed this as completed May 24, 2024
@medikoo
Copy link
Owner

medikoo commented May 24, 2024

(also fixed and published with v0.4.17)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests