dollar-shell 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +4 -4
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,6 @@ BSD-3-Clause
203
204
 
204
205
  ## Release History
205
206
 
207
+ - 1.0.2 *Technical release: fixed references in the package file.*
208
+ - 1.0.1 *Technical release: more tests, better documentation.*
206
209
  - 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.0",
4
+ "version": "1.0.2",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
7
  "types": "./src/index.d.ts",
@@ -20,12 +20,12 @@
20
20
  ],
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "git+https://github.com/uhop/list-toolkit.git"
23
+ "url": "git+https://github.com/uhop/dollar-shell.git"
24
24
  },
25
25
  "bugs": {
26
- "url": "https://github.com/uhop/list-toolkit/issues"
26
+ "url": "https://github.com/uhop/dollar-shell/issues"
27
27
  },
28
- "homepage": "https://github.com/uhop/list-toolkit#readme",
28
+ "homepage": "https://github.com/uhop/dollar-shell#readme",
29
29
  "keywords": [
30
30
  "shell",
31
31
  "spawn",