reverentgeek 2.1.2 → 2.1.3
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 +2 -10
- package/eslint.config.js +2 -8
- package/package.json +2 -2
package/bin/card.js
CHANGED
|
@@ -21,9 +21,9 @@ const lightBlue = "#99DAFF";
|
|
|
21
21
|
|
|
22
22
|
// set up chalk and gradients
|
|
23
23
|
const yellowChalk = chalk.hex( yellow );
|
|
24
|
-
const lbChalk = chalk.hex( lightBlue
|
|
24
|
+
const lbChalk = chalk.hex( lightBlue );
|
|
25
25
|
const blueChalk = chalk.hex( blue );
|
|
26
|
-
const greenChalk = chalk.hex( green
|
|
26
|
+
const greenChalk = chalk.hex( green );
|
|
27
27
|
const orangeChalk = chalk.hex( orange );
|
|
28
28
|
// const pinkChalk = chalk.hex( pink );
|
|
29
29
|
const ps = gs( [ pink, orange ] );
|
|
@@ -94,14 +94,6 @@ const carding = `\n${ data.labelCard } ${ data.npx }`;
|
|
|
94
94
|
const bio = `\n${ data.bio }`;
|
|
95
95
|
const msg = `\n${ data.msg }`;
|
|
96
96
|
|
|
97
|
-
// const card = [
|
|
98
|
-
// ps.multiline( avatar ), ps.multiline( banner ),
|
|
99
|
-
// hr, heading, hr, working, workingUrl,
|
|
100
|
-
// twittering, tooting, skeeting, threading,
|
|
101
|
-
// githubing, linkedining,
|
|
102
|
-
// webing, emailing, carding, bio, msg
|
|
103
|
-
// ];
|
|
104
|
-
|
|
105
97
|
const card = [
|
|
106
98
|
ps.multiline( avatar ), ps.multiline( banner ),
|
|
107
99
|
hr, heading, hr,
|
package/eslint.config.js
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
|
+
/* eslint-disable-next-line n/no-unpublished-import */
|
|
1
2
|
import rg from "eslint-config-reverentgeek";
|
|
2
3
|
|
|
3
4
|
export default [
|
|
4
|
-
|
|
5
|
-
{
|
|
6
|
-
rules: {
|
|
7
|
-
"n/no-unpublished-import": [ "error", {
|
|
8
|
-
allowModules: [ "eslint-config-reverentgeek" ]
|
|
9
|
-
} ]
|
|
10
|
-
}
|
|
11
|
-
}
|
|
5
|
+
rg.configs["node-esm"]
|
|
12
6
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reverentgeek",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"description": "My personal calling card.",
|
|
5
5
|
"main": "./bin/card.js",
|
|
6
6
|
"bin": {
|
|
@@ -28,6 +28,6 @@
|
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"eslint": "^9.14.0",
|
|
31
|
-
"eslint-config-reverentgeek": "^
|
|
31
|
+
"eslint-config-reverentgeek": "^6.0.2"
|
|
32
32
|
}
|
|
33
33
|
}
|