dollar-shell 1.0.4 → 1.0.5
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 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -204,6 +204,7 @@ BSD-3-Clause
|
|
|
204
204
|
|
|
205
205
|
## Release History
|
|
206
206
|
|
|
207
|
+
* 1.0.5 *Updated dev dependencies.*
|
|
207
208
|
* 1.0.4 *Fixed `raw()` for spawn commands.*
|
|
208
209
|
* 1.0.3 *Added TSDoc comments, improved docs, fixed typos, added the missing copying of properties.*
|
|
209
210
|
* 1.0.2 *Technical release: fixed references in the package file.*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dollar-shell",
|
|
3
3
|
"description": "Run shell commands and use them in streams with ease in Node, Deno, Bun. Tiny, simple, no dependency package.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"types": "./src/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"test": "tape6 --flags FO",
|
|
17
17
|
"test:bun": "tape6-bun --flags FO",
|
|
18
|
-
"test:deno": "deno run -A `tape6-runner
|
|
18
|
+
"test:deno": "deno run -A `tape6-runner main` --flags FO",
|
|
19
19
|
"test:deno-original": "tape6-deno --flags FO",
|
|
20
20
|
"ts-check": "tsc --noEmit"
|
|
21
21
|
},
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"license": "BSD-3-Clause",
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"tape-six": "^0.12.
|
|
49
|
+
"tape-six": "^0.12.1",
|
|
50
50
|
"typescript": "^5.6.2"
|
|
51
51
|
},
|
|
52
52
|
"tape6": {
|