UNPKG

787 BJavaScriptView Raw
1
2function writeErrorInRed(message) {
3 console.error('');
4 console.error('\u001b[31m' + message + '\u001b[39m');
5}
6
7writeErrorInRed(
8`* * * * * * * * * * * * * THIS PACKAGE WAS RENAMED! * * * * * * * * * * * * * *`);
9
10console.error(`
11IMPORTANT: This package has moved under the "@rushstack" NPM scope.
12
13OLD NAME: @microsoft/node-core-library (3.19.3)
14NEW NAME: @rushstack/node-core-library (3.19.4)
15
16The new package's CHANGELOG.md preserves version history from before the rename.
17The new package starts with a SemVer PATCH increment, since no code has changed.
18To learn about the Rush Stack project, please visit https://rushstack.io/`
19);
20
21writeErrorInRed(
22`* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n`);
23
24process.exit(1);