fix(core): typo in nx update log (#27036)

This commit is contained in:
James Henry 2024-07-22 16:50:24 +04:00 committed by GitHub
parent f366d4e09c
commit 521c3f3891
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -701,7 +701,7 @@ describe('global installation', () => {
expect(() => { expect(() => {
output = runCommand(`nx show projects`); output = runCommand(`nx show projects`);
}).not.toThrow(); }).not.toThrow();
expect(output).toContain('Its time to update Nx'); expect(output).toContain(`It's time to update Nx`);
updateFile('node_modules/nx/package.json', packageJsonContents); updateFile('node_modules/nx/package.json', packageJsonContents);
}); });

View File

@ -219,7 +219,7 @@ function warnIfUsingOutdatedGlobalInstall(
'For more information, see https://nx.dev/more-concepts/global-nx' 'For more information, see https://nx.dev/more-concepts/global-nx'
); );
output.warn({ output.warn({
title: `Its time to update Nx 🎉`, title: `It's time to update Nx 🎉`,
bodyLines, bodyLines,
}); });
} }