Files: 30a917b3d51c561f4f09ec5ab7c4ea602a1f3c6e / tools
update-dat-latest-readme.js
1 | |
2 | |
3 | /* Any copyright is dedicated to the Public Domain. |
4 | * http://creativecommons.org/publicdomain/zero/1.0/ */ |
5 | |
6 | const addStream = require('add-stream'); |
7 | const intoStream = require('into-stream'); |
8 | const fs = require('fs'); |
9 | const generateChangelog = require('./generate-changelog'); |
10 | |
11 | intoStream( |
12 | '# Manyverse\n\n*A social network off the grid*\n\n[Website](https://manyver.se)\n\n', |
13 | ) |
14 | .pipe(addStream(generateChangelog(1))) |
15 | .pipe(fs.createWriteStream('../dat-release-latest/README.md')); |
16 |
Built with git-ssb-web