forked from noblox/noblox.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostinstall.js
19 lines (15 loc) · 848 Bytes
/
postinstall.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const chalk = require('chalk')
const figlet = require('figlet')
console.log(chalk.yellow(figlet.textSync('noblox.js', {
font: 'Big',
horizontalLayout: 'default',
verticalLayout: 'default'
})))
console.log(`
${chalk.underline('Thank you for installing noblox.js.')}
${chalk.bold('Documentation:')} https://noblox.js.org/
${chalk.bold('GitHub:')} https://github.com/suufi/noblox.js
${chalk.bold('Support:')} https://discord.gg/FChzgQ8
${chalk.bold.blue('noblox.js is maintained with the help of its users but sometimes Roblox silently updates its API endpoints breaking noblox.js out of the blue.')}
${chalk.green('We have created a request for Roblox to implement a change log to help keep the project\'s endpoints updated which you can find here: https://devforum.roblox.com/t/introduce-change-logs-to-roblox-api-endpoints/524783.')}
`)