Feature motivation
I have a large project that's having issues with conflicting versions of chalk being installed. Wrong versions are being picked up in places (which is the individual package's fault).
fork-ts-checker-webpack-plugin has a dependency on babel-code-frame which in turn pulls in chalk@1. For me this is the only package that uses chalk@1 so I'd like to be able to update it.
Looks like the babel package has now been renamed to @babel/code-frame which is where any updates are being published. That depends on chalk@2 so allows me to update and hopefully drop the conflict.
Feature description
Reference the new @babel/code-frame package in package.json to allow users to upgrade it
Feature motivation
I have a large project that's having issues with conflicting versions of
chalkbeing installed. Wrong versions are being picked up in places (which is the individual package's fault).fork-ts-checker-webpack-pluginhas a dependency onbabel-code-framewhich in turn pulls inchalk@1. For me this is the only package that useschalk@1so I'd like to be able to update it.Looks like the babel package has now been renamed to
@babel/code-framewhich is where any updates are being published. That depends onchalk@2so allows me to update and hopefully drop the conflict.Feature description
Reference the new
@babel/code-framepackage in package.json to allow users to upgrade it