You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version of textract (2.5.0) depends on [email protected], which specifies an engine requirement for Node.js versions >=0.10.0 <7. This is not compatible with modern versions of Node.js (e.g., Node.js 18.20.0), resulting in warnings during dependency installation.
Steps to Reproduce:
Install textract with Node.js version 18.20.0.
Run npm install.
Observe the following warning:
`npm WARN EBADENGINE Unsupported engine {
The current version of textract (2.5.0) depends on [email protected], which specifies an engine requirement for Node.js versions >=0.10.0 <7. This is not compatible with modern versions of Node.js (e.g., Node.js 18.20.0), resulting in warnings during dependency installation.
Steps to Reproduce:
package: '[email protected]',
required: { node: '>=0.10.0 <7' },
current: { node: 'v18.20.0', npm: '10.7.0' }
}
`
npm ls got:
[email protected] C:\Users\desig\OneDrive\Documents\GitHub\my-next-app2dg
-- [email protected]`-- [email protected]
`
Expected Behavior:
Environment:
Suggested Solution:
Please update the got dependency to the latest version that is compatible with the current Node.js standards.
Thank you
The text was updated successfully, but these errors were encountered: