cli-argv-util 1.2.6 → 1.2.7
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/LICENSE.txt +1 -1
- package/README.md +1 -1
- package/dist/cli-argv-util.d.ts +2 -2
- package/dist/cli-argv-util.js +1 -1
- package/package.json +7 -7
package/LICENSE.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2022-
|
|
3
|
+
Copyright (c) 2022-2025 Individual contributors to cli-argv-util
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ export type Result = {
|
|
|
70
70
|
params: string[], //array of parameter values supplied by the user
|
|
71
71
|
};
|
|
72
72
|
```
|
|
73
|
-
See the **TypeScript Declarations** at the top of [cli-argv-util.ts](cli-argv-util.ts) for documentation.
|
|
73
|
+
See the **TypeScript Declarations** at the top of [cli-argv-util.ts](src/cli-argv-util.ts) for documentation.
|
|
74
74
|
|
|
75
75
|
<br>
|
|
76
76
|
|
package/dist/cli-argv-util.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//! cli-argv-util v1.2.
|
|
1
|
+
//! cli-argv-util v1.2.7 ~~ https://github.com/center-key/cli-argv-util ~~ MIT License
|
|
2
2
|
|
|
3
3
|
export type StringFlagMap = {
|
|
4
4
|
[flag: string]: string | undefined;
|
|
@@ -18,7 +18,7 @@ declare const cliArgvUtil: {
|
|
|
18
18
|
parse(validFlags: string[]): Result;
|
|
19
19
|
run(packageJson: {
|
|
20
20
|
[key: string]: unknown;
|
|
21
|
-
}, posix: string): Buffer
|
|
21
|
+
}, posix: string): Buffer<ArrayBufferLike>;
|
|
22
22
|
readFolder(folder: string): string[];
|
|
23
23
|
unquoteArgs(args: string[]): string[];
|
|
24
24
|
};
|
package/dist/cli-argv-util.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cli-argv-util",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"description": "Simple utility to parse command line parameters and flags (arguments vector)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -55,17 +55,17 @@
|
|
|
55
55
|
"slash": "~5.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@eslint/js": "~9.
|
|
59
|
-
"@types/node": "~22.
|
|
58
|
+
"@eslint/js": "~9.21",
|
|
59
|
+
"@types/node": "~22.13",
|
|
60
60
|
"add-dist-header": "~1.4",
|
|
61
61
|
"assert-deep-strict-equal": "~1.2",
|
|
62
62
|
"copy-file-util": "~1.2",
|
|
63
|
-
"eslint": "~9.
|
|
63
|
+
"eslint": "~9.21",
|
|
64
64
|
"jshint": "~2.13",
|
|
65
|
-
"mocha": "~
|
|
65
|
+
"mocha": "~11.1",
|
|
66
66
|
"rimraf": "~6.0",
|
|
67
67
|
"run-scripts-util": "~1.3",
|
|
68
|
-
"typescript": "~5.
|
|
69
|
-
"typescript-eslint": "~8.
|
|
68
|
+
"typescript": "~5.7",
|
|
69
|
+
"typescript-eslint": "~8.25"
|
|
70
70
|
}
|
|
71
71
|
}
|