@polka-codes/cli 0.3.2 → 0.3.4
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 -3
- package/cli.mjs +2 -0
- package/dist/index.js +344 -334
- package/dist/pino-file.js +4250 -0
- package/dist/pino-pretty.js +3245 -0
- package/dist/pino-worker.js +4594 -0
- package/dist/thread-stream-worker.js +211 -0
- package/package.json +3 -6
package/README.md
CHANGED
|
@@ -25,13 +25,13 @@ npx @polka-codes/cli
|
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
# Run interactive session
|
|
28
|
-
polka
|
|
28
|
+
polka-codes
|
|
29
29
|
|
|
30
30
|
# Run specific task
|
|
31
|
-
polka task "improve readme"
|
|
31
|
+
polka-codes task "improve readme"
|
|
32
32
|
|
|
33
33
|
# Create config file
|
|
34
|
-
polka config
|
|
34
|
+
polka-codes config
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
### Configuration
|
package/cli.mjs
ADDED