yargs-file-commands 0.0.13 → 0.0.14
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/CHANGELOG.md +7 -8
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# yargs-file-commands
|
|
2
2
|
|
|
3
|
-
## 0.0.
|
|
3
|
+
## 0.0.14
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -10,33 +10,32 @@
|
|
|
10
10
|
- Improved debugging logging
|
|
11
11
|
- More robust debug messages
|
|
12
12
|
|
|
13
|
+
## 0.0.13
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Validate that provided command directories are aboslute
|
|
18
|
+
|
|
13
19
|
## 0.0.12
|
|
14
20
|
|
|
15
21
|
### Patch Changes
|
|
16
22
|
|
|
17
|
-
- More explicit exceptions when bad parameters are passed in
|
|
18
23
|
- More robust parameter checking and logging
|
|
19
|
-
- Improved debugging logging
|
|
20
|
-
- More robust debug messages
|
|
21
24
|
|
|
22
25
|
## 0.0.11
|
|
23
26
|
|
|
24
27
|
### Patch Changes
|
|
25
28
|
|
|
26
29
|
- More explicit exceptions when bad parameters are passed in
|
|
27
|
-
- Improved debugging logging
|
|
28
|
-
- More robust debug messages
|
|
29
30
|
|
|
30
31
|
## 0.0.10
|
|
31
32
|
|
|
32
33
|
### Patch Changes
|
|
33
34
|
|
|
34
35
|
- Improved debugging logging
|
|
35
|
-
- More robust debug messages
|
|
36
36
|
|
|
37
37
|
## 0.0.9
|
|
38
38
|
|
|
39
39
|
### Patch Changes
|
|
40
40
|
|
|
41
|
-
- Improved debugging logging
|
|
42
41
|
- More robust debug messages
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yargs-file-commands",
|
|
3
3
|
"description": "A yargs helper function that lets you define your commands structure via directory and file naming conventions.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.14",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -55,7 +55,6 @@
|
|
|
55
55
|
"typecheck": "tsc --noEmit",
|
|
56
56
|
"test": "tsc && node --test dist/**/*.test.js --test-concurrency=1",
|
|
57
57
|
"lint": "eslint --fix \"src/**/*.{ts,tsx}\"",
|
|
58
|
-
"format": "prettier \"src/**/*.{js,jsx,css,md,html,ts,tsx,json,yaml}\" --check"
|
|
59
|
-
"prePublishOnly": "pnpm build && pnpm test"
|
|
58
|
+
"format": "prettier \"src/**/*.{js,jsx,css,md,html,ts,tsx,json,yaml}\" --check"
|
|
60
59
|
}
|
|
61
60
|
}
|