eslint-config-wesbos icon indicating copy to clipboard operation
eslint-config-wesbos copied to clipboard

Deprecated dependencies

Open 5uttercan3 opened this issue 3 years ago • 1 comments

Deprecated dependencies on eslint config install :-

❯ npx install-peerdeps --dev eslint-config-wesbos
Need to install the following packages:
  install-peerdeps
Ok to proceed? (y) y
npm WARN deprecated @babel/[email protected]: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.
npm WARN deprecated [email protected]: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.

5uttercan3 avatar May 25 '22 09:05 5uttercan3

@5uttercan3 It's okay. Those are sub-dependencies of install-peerdeps and not npm packages used in this config.

Wes cannot do anything to remove those messages as they come from the install-peerdeps npm package 🙂

Clear npx cache

npx clear-npx-cache

Use npx to install install-peerdeps

npx install-peerdeps

The deprecation messages

❯ npx install-peerdeps
Need to install the following packages:
  install-peerdeps
Ok to proceed? (y) y
npm WARN deprecated @babel/[email protected]: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.
npm WARN deprecated [email protected]: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.

Asjas avatar May 25 '22 13:05 Asjas