We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65fbf77 commit b7659baCopy full SHA for b7659ba
generate-readme.js
@@ -7,7 +7,8 @@ const outputFile = ROOT_PATH + 'README.md';
7
const result = inputFiles
8
.map(filePath => fs.readFileSync(filePath, 'utf8'))
9
.map(injectCodeBlocks)
10
- .map(injectExpanders);
+ .map(injectExpanders)
11
+ .toString();
12
13
fs.writeFileSync(outputFile, result, 'utf8');
14
0 commit comments