-
Notifications
You must be signed in to change notification settings - Fork 819
Description
Describe the bug
I have deprecation warning because I'm using standard version.
Standard version has in his dependencies deprecated version of packages.
npm warn deprecated q@1.5.1: You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
└─┬ standard-version@9.5.0
├─┬ conventional-changelog-conventionalcommits@4.6.3
│ └── q@1.5.1
├─┬ conventional-changelog@3.1.25
│ ├─┬ conventional-changelog-angular@5.0.13
│ │ └── q@1.5.1 deduped
│ ├─┬ conventional-changelog-atom@2.0.8
│ │ └── q@1.5.1 deduped
│ ├─┬ conventional-changelog-codemirror@2.0.8
│ │ └── q@1.5.1 deduped
│ ├─┬ conventional-changelog-core@4.2.4
│ │ └── q@1.5.1 deduped
│ ├─┬ conventional-changelog-ember@2.0.9
│ │ └── q@1.5.1 deduped
│ ├─┬ conventional-changelog-eslint@3.0.9
│ │ └── q@1.5.1 deduped
│ ├─┬ conventional-changelog-express@2.0.6
│ │ └── q@1.5.1 deduped
│ ├─┬ conventional-changelog-jquery@3.0.11
│ │ └── q@1.5.1 deduped
│ └─┬ conventional-changelog-jshint@2.0.9
│ └── q@1.5.1 deduped
└─┬ conventional-recommended-bump@6.1.0
└── q@1.5.1 deduped
Current behavior
when npm install I have this warning :
npm warn deprecated q@1.5.1: You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
Expected behavior
no warning
Environment
standard-versionversion(s): standard-version@9.5.0- Node/npm version: Node v22.12.0 | npm v10.9.0
- OS: Windows 10 pro under WSL2
Possible Solution
upgrade deprecated version of dependencies to an undeprecated version.
#978