reverentgeek 1.1.1 → 1.3.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 +8 -4
- package/package.json +26 -26
package/bin/card.js
CHANGED
|
@@ -23,8 +23,8 @@ const options = {
|
|
|
23
23
|
const data = {
|
|
24
24
|
name: chalk.white.bold( " DAVID NEAL" ),
|
|
25
25
|
handle: chalk.cyan( "reverentgeek" ),
|
|
26
|
-
work: chalk.white( "
|
|
27
|
-
workUrl: chalk.cyan( "https://
|
|
26
|
+
work: chalk.white( "Principal Developer Advocate" ),
|
|
27
|
+
workUrl: chalk.cyan( "https://pluralsight.com" ),
|
|
28
28
|
twitter: chalk.cyan( "https://twitter.com/reverentgeek" ),
|
|
29
29
|
github: chalk.cyan( "https://github.com/reverentgeek" ),
|
|
30
30
|
linkedin: chalk.cyan( "https://linkedin.com/in/davidneal" ),
|
|
@@ -43,7 +43,10 @@ const data = {
|
|
|
43
43
|
speaker, software developer, and Microsoft MVP
|
|
44
44
|
living in North GA. I run on a high-octane
|
|
45
45
|
mixture of caffeine and JavaScript, and
|
|
46
|
-
I’m entirely made of bacon.` )
|
|
46
|
+
I’m entirely made of bacon.` ),
|
|
47
|
+
msg: chalk.white( `If there's anything I can help you with,
|
|
48
|
+
reach out anytime! You can reach me by email and
|
|
49
|
+
my Twitter direct messages are open!` )
|
|
47
50
|
};
|
|
48
51
|
|
|
49
52
|
// Actual strings we're going to output
|
|
@@ -58,12 +61,13 @@ const webing = `${ data.labelWeb } ${ data.web }`;
|
|
|
58
61
|
const emailing = `${ data.labelEmail } ${ data.email }`;
|
|
59
62
|
const carding = `\n${ data.labelCard } ${ data.npx }`;
|
|
60
63
|
const bio = `\n${ data.bio }`;
|
|
64
|
+
const msg = `\n${ data.msg }`;
|
|
61
65
|
|
|
62
66
|
const card = [
|
|
63
67
|
avatar, banner,
|
|
64
68
|
hr, heading, hr, working, workingUrl,
|
|
65
69
|
twittering, githubing, linkedining,
|
|
66
|
-
webing, emailing, carding, bio
|
|
70
|
+
webing, emailing, carding, bio, msg
|
|
67
71
|
];
|
|
68
72
|
|
|
69
73
|
// Put all our output together into a single variable so we can use boxen effectively
|
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
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
|
-
}
|
|
2
|
+
"name": "reverentgeek",
|
|
3
|
+
"version": "1.3.1",
|
|
4
|
+
"description": "My personal calling card.",
|
|
5
|
+
"main": "./bin/card.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"reverentgeek": "./bin/card.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"lint": "eslint bin/*.js art/*.js"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"David",
|
|
14
|
+
"Neal",
|
|
15
|
+
"reverentgeek"
|
|
16
|
+
],
|
|
17
|
+
"author": "David Neal <david@reverentgeek.com> (https://reverentgeek.com)",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"boxen": "^5.0.1",
|
|
21
|
+
"chalk": "^4.1.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"eslint": "^7.5.0",
|
|
25
|
+
"eslint-config-reverentgeek": "^3.0.0"
|
|
26
|
+
}
|
|
27
|
+
}
|