-
Notifications
You must be signed in to change notification settings - Fork 0
/
sponsors.js
executable file
·37 lines (35 loc) · 1.09 KB
/
sponsors.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
33
34
35
36
37
const chalk = require('chalk');
const sponsors = [{
"name": "Zillow",
"website": "https://zillow.com"
}, {
"name": "Agape Red",
"website": "https://agapered.com"
}, {
"name": "Sitepen",
"website": "https://www.sitepen.com"
}, {
"name": "Flywheel",
"website": "https://getflywheel.com"
}, {
"name": "Flyover Technical",
"website": "http://www.flyovertechnical"
}, {
"name": "Midland University Code Academy",
"website": "http://code.midlandu.edu/"
}];
module.exports = function (program) {
program.command('sponsors').action(function(name) {
console.log(chalk.cyan(".==============================."));
console.log(chalk.cyan("| SPONSORS |"));
console.log(chalk.cyan("'=============================='"));
console.log("");
console.log("NEJS Conf could not happen without our sponsors, and we are very grateful for their support!");
console.log("");
for (let sponsor of sponsors) {
console.log(chalk.magenta(" Name: ") + sponsor.name);
console.log(chalk.magenta("Website: ") + sponsor.website);
console.log("");
}
});
};