reverentgeek 2.0.0 → 2.1.0

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.
Files changed (2) hide show
  1. package/bin/card.js +21 -15
  2. package/package.json +2 -2
package/bin/card.js CHANGED
@@ -45,7 +45,8 @@ const data = {
45
45
  handle: yellowChalk( "reverentgeek" ),
46
46
  // work: ps( "Principal Developer Advocate" ),
47
47
  // workUrl: ps( "https://pluralsight.com" ),
48
- twitter: yellowChalk( "https://twitter.com/reverentgeek" ),
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,23 +57,23 @@ const data = {
56
57
  npx: orangeChalk( "npx reverentgeek" ),
57
58
  labelWork: blueChalk( " Work:" ),
58
59
  labelWorkUrl: blueChalk( " " ),
59
- labelTwitter: blueChalk( " Twitter:" ),
60
- labelMastodon: blueChalk( " Mastodon:" ),
61
- labelBluesky: blueChalk( " BlueSky:" ),
62
- labelThreads: blueChalk( " Threads:" ),
63
- labelGitHub: blueChalk( " GitHub:" ),
64
- labelLinkedIn: blueChalk( " LinkedIn:" ),
65
- labelWeb: blueChalk( " Web:" ),
66
- labelCard: blueChalk( " Card:" ),
67
- labelEmail: blueChalk( " Email:" ),
60
+ labelTwitter: blueChalk( " X:" ),
61
+ labelInstagram: blueChalk( " Instagram:" ),
62
+ labelMastodon: blueChalk( " Mastodon:" ),
63
+ labelBluesky: blueChalk( " BlueSky:" ),
64
+ labelThreads: blueChalk( " Threads:" ),
65
+ labelGitHub: blueChalk( " GitHub:" ),
66
+ labelLinkedIn: blueChalk( " LinkedIn:" ),
67
+ labelWeb: blueChalk( " Web:" ),
68
+ labelCard: blueChalk( " Card:" ),
69
+ labelEmail: blueChalk( " Email:" ),
68
70
  bio: lbChalk( `I am a family man, geek, musician, illustrator,
69
71
  speaker, software developer, and Microsoft MVP
70
72
  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! You can reach me by email and
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
- twittering, tooting, skeeting, threading,
107
- githubing, linkedining,
108
- webing, emailing, carding, bio, msg
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reverentgeek",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "My personal calling card.",
5
5
  "main": "./bin/card.js",
6
6
  "bin": {
@@ -30,4 +30,4 @@
30
30
  "eslint": "^9.14.0",
31
31
  "eslint-config-reverentgeek": "^5.1.0"
32
32
  }
33
- }
33
+ }