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.
1 parent df5fa46 commit 3307850Copy full SHA for 3307850
scripts/release.js
@@ -23,13 +23,13 @@ module.exports = {
23
generateNotes: async () => {
24
const pluginsDir = path.resolve(process.cwd(), 'plugins');
25
let pluginIds = [];
26
- let releaseNotes = '```json';
+ let releaseNotes = '```json\n';
27
28
if (fs.existsSync(pluginsDir)) {
29
fs.readdirSync(pluginsDir).forEach(submodule => { pluginIds.push(ParsePlugin(pluginsDir, submodule)); });
30
}
31
32
releaseNotes += JSON.stringify(pluginIds, null, 4);
33
- return releaseNotes + '```';
+ return releaseNotes + '\n```';
34
35
};
0 commit comments