-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Installing lerna shows two deprecated warnings for used module functionality #3550
Copy link
Copy link
Closed
Labels
Description
When installing lerna via npm install two warning are being showed about the usage of deprecated functionalities of used modules. This is present in both older version (5.5.2) and on the most recent version (6.5.1)
npm WARN deprecated readdir-scoped-modules@1.1.0: This functionality has been moved to @npmcli/fs
npm WARN deprecated @npmcli/move-file@2.0.1: This functionality has been moved to @npmcli/fs
Expected Behavior
I would prefer the replacement of the deprecated code to avoid potential future issues as soon as possible.
Steps to Reproduce
Create an empty folder and create a package.json file in that folder with the following content.
{
"name": "test-app",
"devDependencies": {
"lerna": "6.5.1"
}
}
Run npm install and notice the warning message regarding deprecated functionality.
Failure Logs / Configuration
npm WARN deprecated readdir-scoped-modules@1.1.0: This functionality has been moved to @npmcli/fs
npm WARN deprecated @npmcli/move-file@2.0.1: This functionality has been moved to @npmcli/fs
Reactions are currently unavailable