Skip to content

Commit a8900e4

Browse files
authored
chore(misc): temporarily hide social card (#32080)
<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
1 parent 95e9eb5 commit a8900e4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/create-nx-workspace/bin/create-nx-workspace.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -272,13 +272,13 @@ async function main(parsedArgs: yargs.Arguments<Arguments>) {
272272
process.stdout.write(workspaceInfo.nxCloudInfo);
273273
}
274274

275-
if (isKnownPreset(parsedArgs.preset)) {
276-
printSocialInformation();
277-
} else {
278-
output.log({
279-
title: `Successfully applied preset: ${parsedArgs.preset}`,
280-
});
281-
}
275+
// if (isKnownPreset(parsedArgs.preset)) {
276+
// printSocialInformation();
277+
// } else {
278+
// output.log({
279+
// title: `Successfully applied preset: ${parsedArgs.preset}`,
280+
// });
281+
// }
282282
}
283283

284284
/**

0 commit comments

Comments
 (0)