stdin-glob 1.8.0 → 1.8.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.
- package/README.md +18 -0
- package/bin/stdin-glob.cjs +3 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
# ⚠️ DEPRECATION WARNING
|
|
2
|
+
|
|
3
|
+
**`stdin-glob` is deprecated.**
|
|
4
|
+
|
|
5
|
+
Please update your workflows to use [`codepicker-tool`](https://github.com/rodnye/codepicker) instead. All existing functionality has been migrated and improved in `codepicker`.
|
|
6
|
+
|
|
7
|
+
You can install the replacement via:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g codepicker-tool
|
|
11
|
+
# or
|
|
12
|
+
pnpm install -g codepicker-tool
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
# Original README for stdin-glob
|
|
16
|
+
|
|
17
|
+
*(Below is the original README content)*
|
|
18
|
+
|
|
1
19
|
# stdin-glob
|
|
2
20
|
|
|
3
21
|
[](https://www.npmjs.com/package/stdin-glob)
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stdin-glob",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "Expand glob patterns and output file contents.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"packageManager": "pnpm@10.0.0",
|
|
8
8
|
"bin": {
|
|
9
|
-
"stdin-glob": "./
|
|
9
|
+
"stdin-glob": "./bin/stdin-glob.cjs"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "tsc",
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
20
|
"dist/**/*.js",
|
|
21
|
-
"dist/**/*.d.ts"
|
|
21
|
+
"dist/**/*.d.ts",
|
|
22
|
+
"bin/*"
|
|
22
23
|
],
|
|
23
24
|
"keywords": [
|
|
24
25
|
"glob",
|