reverentgeek 2.0.1 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/card.js +12 -6
- package/package.json +2 -2
package/bin/card.js
CHANGED
|
@@ -46,6 +46,7 @@ const data = {
|
|
|
46
46
|
// work: ps( "Principal Developer Advocate" ),
|
|
47
47
|
// workUrl: ps( "https://pluralsight.com" ),
|
|
48
48
|
twitter: yellowChalk( "https://x.com/reverentgeek" ),
|
|
49
|
+
instagram: yellowChalk( "https://instagram.com/reverentgeek" ),
|
|
49
50
|
mastodon: yellowChalk( "@reverentgeek@reverentgeek.com" ),
|
|
50
51
|
bluesky: yellowChalk( "@reverentgeek.com" ),
|
|
51
52
|
threads: yellowChalk( "@reverentgeek" ),
|
|
@@ -56,7 +57,8 @@ const data = {
|
|
|
56
57
|
npx: orangeChalk( "npx reverentgeek" ),
|
|
57
58
|
labelWork: blueChalk( " Work:" ),
|
|
58
59
|
labelWorkUrl: blueChalk( " " ),
|
|
59
|
-
labelTwitter: blueChalk( "X
|
|
60
|
+
labelTwitter: blueChalk( " X:" ),
|
|
61
|
+
labelInstagram: blueChalk( " Instagram:" ),
|
|
60
62
|
labelMastodon: blueChalk( " Mastodon:" ),
|
|
61
63
|
labelBluesky: blueChalk( " BlueSky:" ),
|
|
62
64
|
labelThreads: blueChalk( " Threads:" ),
|
|
@@ -71,8 +73,7 @@ living in North GA. I run on a high-octane
|
|
|
71
73
|
mixture of caffeine and JavaScript, and
|
|
72
74
|
I'm entirely made of bacon.` ),
|
|
73
75
|
msg: greenChalk( `If there's anything I can help you with,
|
|
74
|
-
reach out anytime
|
|
75
|
-
my Twitter direct messages are open!` )
|
|
76
|
+
reach out anytime!` )
|
|
76
77
|
};
|
|
77
78
|
|
|
78
79
|
// Actual strings we're going to output
|
|
@@ -81,6 +82,7 @@ const heading = data.name;
|
|
|
81
82
|
// const working = `\n${ data.labelWork } ${ data.work }`;
|
|
82
83
|
// const workingUrl = `${ data.labelWorkUrl } ${ data.workUrl }`;
|
|
83
84
|
const twittering = `${ data.labelTwitter } ${ data.twitter }`;
|
|
85
|
+
const instagramming = `${ data.labelInstagram } ${ data.instagram }`;
|
|
84
86
|
const tooting = `${ data.labelMastodon } ${ data.mastodon }`;
|
|
85
87
|
const skeeting = `${ data.labelBluesky } ${ data.bluesky }`;
|
|
86
88
|
const threading = `${ data.labelThreads } ${ data.threads }`;
|
|
@@ -103,9 +105,13 @@ const msg = `\n${ data.msg }`;
|
|
|
103
105
|
const card = [
|
|
104
106
|
ps.multiline( avatar ), ps.multiline( banner ),
|
|
105
107
|
hr, heading, hr,
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
108
|
+
webing, emailing,
|
|
109
|
+
linkedining,
|
|
110
|
+
githubing,
|
|
111
|
+
instagramming,
|
|
112
|
+
tooting, skeeting, threading,
|
|
113
|
+
twittering,
|
|
114
|
+
carding, bio, msg
|
|
109
115
|
];
|
|
110
116
|
|
|
111
117
|
// Put all our output together into a single variable so we can use boxen effectively
|
package/package.json
CHANGED