reverentgeek 1.3.1 → 1.4.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 +4 -1
- package/package.json +5 -1
package/bin/card.js
CHANGED
|
@@ -26,6 +26,7 @@ const data = {
|
|
|
26
26
|
work: chalk.white( "Principal Developer Advocate" ),
|
|
27
27
|
workUrl: chalk.cyan( "https://pluralsight.com" ),
|
|
28
28
|
twitter: chalk.cyan( "https://twitter.com/reverentgeek" ),
|
|
29
|
+
mastodon: chalk.cyan( "https://techhub.social/@reverentgeek" ),
|
|
29
30
|
github: chalk.cyan( "https://github.com/reverentgeek" ),
|
|
30
31
|
linkedin: chalk.cyan( "https://linkedin.com/in/davidneal" ),
|
|
31
32
|
web: chalk.cyan( "https://reverentgeek.com" ),
|
|
@@ -34,6 +35,7 @@ const data = {
|
|
|
34
35
|
labelWork: chalk.white.bold( " Work:" ),
|
|
35
36
|
labelWorkUrl: chalk.white.bold( " " ),
|
|
36
37
|
labelTwitter: chalk.white.bold( " Twitter:" ),
|
|
38
|
+
labelMastodon: chalk.white.bold( " Mastodon:" ),
|
|
37
39
|
labelGitHub: chalk.white.bold( " GitHub:" ),
|
|
38
40
|
labelLinkedIn: chalk.white.bold( " LinkedIn:" ),
|
|
39
41
|
labelWeb: chalk.white.bold( " Web:" ),
|
|
@@ -55,6 +57,7 @@ const heading = `${ data.name }`;
|
|
|
55
57
|
const working = `\n${ data.labelWork } ${ data.work }`;
|
|
56
58
|
const workingUrl = `${ data.labelWorkUrl } ${ data.workUrl }`;
|
|
57
59
|
const twittering = `${ data.labelTwitter } ${ data.twitter }`;
|
|
60
|
+
const tooting = `${ data.labelMastodon } ${ data.mastodon }`;
|
|
58
61
|
const githubing = `${ data.labelGitHub } ${ data.github }`;
|
|
59
62
|
const linkedining = `${ data.labelLinkedIn } ${ data.linkedin }`;
|
|
60
63
|
const webing = `${ data.labelWeb } ${ data.web }`;
|
|
@@ -66,7 +69,7 @@ const msg = `\n${ data.msg }`;
|
|
|
66
69
|
const card = [
|
|
67
70
|
avatar, banner,
|
|
68
71
|
hr, heading, hr, working, workingUrl,
|
|
69
|
-
twittering, githubing, linkedining,
|
|
72
|
+
twittering, tooting, githubing, linkedining,
|
|
70
73
|
webing, emailing, carding, bio, msg
|
|
71
74
|
];
|
|
72
75
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reverentgeek",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "My personal calling card.",
|
|
5
5
|
"main": "./bin/card.js",
|
|
6
6
|
"bin": {
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
],
|
|
17
17
|
"author": "David Neal <david@reverentgeek.com> (https://reverentgeek.com)",
|
|
18
18
|
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/reverentgeek/reverentgeek-card.git"
|
|
22
|
+
},
|
|
19
23
|
"dependencies": {
|
|
20
24
|
"boxen": "^5.0.1",
|
|
21
25
|
"chalk": "^4.1.0"
|