forked from github-tools/github-release-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_postinstall.js
32 lines (23 loc) · 1.01 KB
/
_postinstall.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const chalk = require("chalk");
process.stdout.write(
chalk.white(`
${chalk.yellow("| ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ |")}
${chalk.blue(`🙏 Thanks for downloading ${chalk.green("gren")}`)}
${chalk.yellow("| ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ |")}
Before you start:
1. Generate a token with ${chalk.yellow("repo scope")} at this link: ${chalk.blue(
"https://github.com/settings/tokens/new",
)}
2. For every project, run ${chalk.green("gren init")} to create a config file (optional)
3. Run ${chalk.green("gren help")} for more help or see ${chalk.blue(
"https://github-tools.github.io/github-release-notes/",
)}
For any questions/issues, go here: ${chalk.blue(
"https://github.com/github-tools/github-release-notes/issues",
)}
If you like ${chalk.green("gren")}, feel free to ⭐ it!
${chalk.yellow(
".:| ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ |:.",
)}
`),
);