@microsoft/node-core-library
Version:
(Please use "@rushstack/node-core-library" instead.)
25 lines (17 loc) • 787 B
JavaScript
function writeErrorInRed(message) {
console.error('');
console.error('\u001b[31m' + message + '\u001b[39m');
}
writeErrorInRed(
`* * * * * * * * * * * * * THIS PACKAGE WAS RENAMED! * * * * * * * * * * * * * *`);
console.error(`
IMPORTANT: This package has moved under the "@rushstack" NPM scope.
OLD NAME: @microsoft/node-core-library (3.19.3)
NEW NAME: @rushstack/node-core-library (3.19.4)
The new package's CHANGELOG.md preserves version history from before the rename.
The new package starts with a SemVer PATCH increment, since no code has changed.
To learn about the Rush Stack project, please visit https://rushstack.io/`
);
writeErrorInRed(
`* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n`);
process.exit(1);