reverentgeek 1.5.0 → 1.6.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 +22 -7
  2. package/package.json +4 -4
package/bin/card.js CHANGED
@@ -44,10 +44,12 @@ const options = {
44
44
  const data = {
45
45
  name: yellowChalk.bold( " DAVID NEAL" ),
46
46
  handle: yellowChalk( "reverentgeek" ),
47
- work: ps( "Principal Developer Advocate" ),
48
- workUrl: ps( "https://pluralsight.com" ),
47
+ // work: ps( "Principal Developer Advocate" ),
48
+ // workUrl: ps( "https://pluralsight.com" ),
49
49
  twitter: yellowChalk( "https://twitter.com/reverentgeek" ),
50
- mastodon: yellowChalk( "https://techhub.social/@reverentgeek" ),
50
+ mastodon: yellowChalk( "@reverentgeek@reverentgeek.com" ),
51
+ bluesky: yellowChalk( "@reverentgeek.com"),
52
+ threads: yellowChalk( "@reverentgeek"),
51
53
  github: yellowChalk( "https://github.com/reverentgeek" ),
52
54
  linkedin: yellowChalk( "https://linkedin.com/in/davidneal" ),
53
55
  web: yellowChalk( "https://reverentgeek.com" ),
@@ -57,6 +59,8 @@ const data = {
57
59
  labelWorkUrl: blueChalk( " " ),
58
60
  labelTwitter: blueChalk( " Twitter:" ),
59
61
  labelMastodon: blueChalk( " Mastodon:" ),
62
+ labelBluesky: blueChalk( " BlueSky:" ),
63
+ labelThreads: blueChalk( " Threads:" ),
60
64
  labelGitHub: blueChalk( " GitHub:" ),
61
65
  labelLinkedIn: blueChalk( " LinkedIn:" ),
62
66
  labelWeb: blueChalk( " Web:" ),
@@ -75,10 +79,12 @@ my Twitter direct messages are open!` )
75
79
  // Actual strings we're going to output
76
80
  const hr = ps( "----------~~~~~~~~~==========~~~~~~~~~-----------" );
77
81
  const heading = data.name;
78
- const working = `\n${ data.labelWork } ${ data.work }`;
79
- const workingUrl = `${ data.labelWorkUrl } ${ data.workUrl }`;
82
+ // const working = `\n${ data.labelWork } ${ data.work }`;
83
+ // const workingUrl = `${ data.labelWorkUrl } ${ data.workUrl }`;
80
84
  const twittering = `${ data.labelTwitter } ${ data.twitter }`;
81
85
  const tooting = `${ data.labelMastodon } ${ data.mastodon }`;
86
+ const skeeting = `${ data.labelBluesky } ${ data.bluesky }`;
87
+ const threading = `${ data.labelThreads } ${ data.threads }`;
82
88
  const githubing = `${ data.labelGitHub } ${ data.github }`;
83
89
  const linkedining = `${ data.labelLinkedIn } ${ data.linkedin }`;
84
90
  const webing = `${ data.labelWeb } ${ data.web }`;
@@ -87,10 +93,19 @@ const carding = `\n${ data.labelCard } ${ data.npx }`;
87
93
  const bio = `\n${ data.bio }`;
88
94
  const msg = `\n${ data.msg }`;
89
95
 
96
+ // const card = [
97
+ // ps.multiline( avatar ), ps.multiline( banner ),
98
+ // hr, heading, hr, working, workingUrl,
99
+ // twittering, tooting, skeeting, threading,
100
+ // githubing, linkedining,
101
+ // webing, emailing, carding, bio, msg
102
+ // ];
103
+
90
104
  const card = [
91
105
  ps.multiline( avatar ), ps.multiline( banner ),
92
- hr, heading, hr, working, workingUrl,
93
- twittering, tooting, githubing, linkedining,
106
+ hr, heading, hr,
107
+ twittering, tooting, skeeting, threading,
108
+ githubing, linkedining,
94
109
  webing, emailing, carding, bio, msg
95
110
  ];
96
111
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reverentgeek",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "My personal calling card.",
5
5
  "main": "./bin/card.js",
6
6
  "bin": {
@@ -26,7 +26,7 @@
26
26
  "gradient-string": "^2.0.2"
27
27
  },
28
28
  "devDependencies": {
29
- "eslint": "^7.5.0",
30
- "eslint-config-reverentgeek": "^3.0.0"
29
+ "eslint": "^8.46.0",
30
+ "eslint-config-reverentgeek": "^4.0.1"
31
31
  }
32
- }
32
+ }