@pz4l/tinyimg-cli 0.1.0-beta.1 → 0.1.1-beta.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 +18 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -40,6 +40,24 @@ pnpm add -D tinyimg-cli
|
|
|
40
40
|
yarn add -D tinyimg-cli
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
+
### Testing Installation
|
|
44
|
+
|
|
45
|
+
To verify the package installs correctly without workspace dependency errors:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
# Test in a clean directory outside the monorepo
|
|
49
|
+
cd /tmp
|
|
50
|
+
mkdir test-tinyimg && cd test-tinyimg
|
|
51
|
+
pnpm init
|
|
52
|
+
pnpm add @pz4l/tinyimg-cli@latest
|
|
53
|
+
|
|
54
|
+
# Verify installation
|
|
55
|
+
pnpm list @pz4l/tinyimg-cli @pz4l/tinyimg-core
|
|
56
|
+
|
|
57
|
+
# Check that dependencies are resolved (no workspace:* protocol)
|
|
58
|
+
cat node_modules/@pz4l/tinyimg-cli/package.json | grep dependencies
|
|
59
|
+
```
|
|
60
|
+
|
|
43
61
|
## Quick Start
|
|
44
62
|
|
|
45
63
|
```bash
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pz4l/tinyimg-cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1-beta.1",
|
|
5
5
|
"description": "CLI tool for TinyPNG image compression with batch processing and interactive key management",
|
|
6
6
|
"author": "pzehrel",
|
|
7
7
|
"license": "MIT",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"cac": "^7.0.0",
|
|
54
54
|
"fast-glob": "^3.3.3",
|
|
55
55
|
"kleur": "^4.1.5",
|
|
56
|
-
"@pz4l/tinyimg-core": "0.1.
|
|
56
|
+
"@pz4l/tinyimg-core": "0.1.1-beta.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@clack/prompts": "^1.1.0"
|