tacos-for 2.0.2 → 2.0.8
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/index.js +1 -1
- package/eslint.config.js +2 -8
- package/package.json +4 -4
package/bin/index.js
CHANGED
|
@@ -22,7 +22,7 @@ if ( options._.length === 0 ) {
|
|
|
22
22
|
const people = options._[0];
|
|
23
23
|
|
|
24
24
|
const tacos = people * options.tacosPerPerson;
|
|
25
|
-
const tacoText = (tacos === 1 ) ? "taco!" : "tacos!";
|
|
25
|
+
const tacoText = ( tacos === 1 ) ? "taco!" : "tacos!";
|
|
26
26
|
|
|
27
27
|
const output = [
|
|
28
28
|
chalk.cyan( "You're gonna need at least" ),
|
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": "tacos-for",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"boxen": "^8.0.1",
|
|
13
|
-
"chalk": "^5.
|
|
13
|
+
"chalk": "^5.6.2",
|
|
14
14
|
"yargs": "^18.0.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"eslint": "^9.
|
|
18
|
-
"eslint-config-reverentgeek": "^
|
|
17
|
+
"eslint": "^9.39.2",
|
|
18
|
+
"eslint-config-reverentgeek": "^6.3.7"
|
|
19
19
|
},
|
|
20
20
|
"bin": {
|
|
21
21
|
"tacos-for": "bin/index.js"
|