Update all non-major dependencies
[ProtonMail-WebClient.git] / applications / storybook / scripts / format
blob8f0094218aac16be2899283e4d82e401b3fa1212
1 const fs = require('fs');
3 const data = fs.readFileSync('/dev/stdin', 'utf-8');
5 const message =
6     'New changelog entries:'
7     + '\n'
8     + `\n>${data.replace(/\n/g, '\n>')}`
9     + '\n'
10     + '\n<https://design-system.protontech.ch/|documentation> | <https://design-system.protontech.ch/?path=/docs/changelog--page|changelog>'
12 console.log(JSON.stringify(message));