We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
longDescription
\n
1 parent df6ec4d commit 6d37ffcCopy full SHA for 6d37ffc
packages/angular/cli/src/command-builder/command-module.ts
@@ -92,7 +92,10 @@ export abstract class CommandModule<T extends {} = {}> implements CommandModuleI
92
longDescriptionRelativePath: path
93
.relative(path.join(__dirname, '../../../../'), this.longDescriptionPath)
94
.replace(/\\/g, path.posix.sep),
95
- longDescription: readFileSync(this.longDescriptionPath, 'utf8'),
+ longDescription: readFileSync(this.longDescriptionPath, 'utf8').replace(
96
+ /\r\n/g,
97
+ '\n',
98
+ ),
99
}
100
: {}),
101
};
0 commit comments