dollar-shell 1.0.0 → 1.0.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 +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,7 +72,8 @@ import lines from 'stream-chain/utils/lines.js';
|
|
|
72
72
|
chain([
|
|
73
73
|
$.from`ls -l .`,
|
|
74
74
|
$.io`grep LICENSE`,
|
|
75
|
-
$.io`wc
|
|
75
|
+
$.io`wc`,
|
|
76
|
+
new TextDecoderStream(),
|
|
76
77
|
lines(),
|
|
77
78
|
line => console.log(line)
|
|
78
79
|
]);
|
|
@@ -203,4 +204,5 @@ BSD-3-Clause
|
|
|
203
204
|
|
|
204
205
|
## Release History
|
|
205
206
|
|
|
207
|
+
- 1.0.1 *Technical release: more tests, better documentation.*
|
|
206
208
|
- 1.0.0 *The initial release.*
|
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.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"types": "./src/index.d.ts",
|