printable-shell-command 5.1.0 → 5.1.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/README.md +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Point 1 is difficult, and maybe even impossible. This library will do its best,
|
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
16
16
|
|
|
17
|
-
Construct a command by providing a command string and a list of
|
|
17
|
+
Construct a command by providing a command string and a list of argument entries. Each entry can either be an individual string, or a tuple containing two or more strings (usually a command flag and its argument). Grouping arguments into tuples controls pretty-printing, but does not affect the semantics of the command.
|
|
18
18
|
|
|
19
19
|
```typescript
|
|
20
20
|
// example.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "printable-shell-command",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.1",
|
|
4
4
|
"description": "A helper class to construct shell commands in a way that allows printing them.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Lucas Garron",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"license": "MPL-2.0",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "
|
|
13
|
+
"url": "https://codeberg.org/lgarron/printable-shell-command"
|
|
14
14
|
},
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@biomejs/biome": "2.3.9",
|
|
28
28
|
"@cubing/dev-config": ">=0.8.3",
|
|
29
|
+
"@lgarron-bin/repo": "^0.14.5",
|
|
29
30
|
"@types/bun": "^1.3.5",
|
|
30
31
|
"bun-dx": "^0.1.4",
|
|
31
32
|
"clipboardy": "^5.0.2",
|