pnpm-catalog-updates 0.7.17 → 0.7.19
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 -4
- package/bin/pcu.js +3 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
A powerful CLI tool for managing pnpm workspace catalog dependencies with ease.
|
|
9
9
|
|
|
10
|
-
**
|
|
10
|
+
**Complete Documentation**: [https://pcu-cli.dev](https://pcu-cli.dev/en)
|
|
11
11
|
|
|
12
12
|
## Quick Start
|
|
13
13
|
|
|
@@ -21,7 +21,7 @@ npm install -g pcu
|
|
|
21
21
|
pnpm add -g pcu
|
|
22
22
|
|
|
23
23
|
# Or use legacy package name
|
|
24
|
-
npm install -g
|
|
24
|
+
npm install -g pnpm-catalog-updates
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
### Usage
|
|
@@ -55,8 +55,7 @@ pcu -s
|
|
|
55
55
|
|
|
56
56
|

|
|
57
57
|
|
|
58
|
-
**
|
|
59
|
-
[Complete Command Reference & Examples](https://pcu-cli.dev/en/command-reference)**
|
|
58
|
+
**[Complete Command Reference & Examples](https://pcu-cli.dev/en/command-reference)**
|
|
60
59
|
|
|
61
60
|
## Links
|
|
62
61
|
|
package/bin/pcu.js
CHANGED
|
@@ -2,12 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
import { fileURLToPath } from 'url';
|
|
4
4
|
import path from 'path';
|
|
5
|
+
import url from 'url';
|
|
5
6
|
|
|
6
7
|
const __filename = fileURLToPath(import.meta.url);
|
|
7
8
|
const __dirname = path.dirname(__filename);
|
|
8
9
|
|
|
9
10
|
// Import and run the CLI
|
|
10
|
-
const
|
|
11
|
+
const modulePath = url.pathToFileURL(path.join(__dirname, '..', 'dist', 'index.js')).href;
|
|
12
|
+
const { main } = await import(modulePath);
|
|
11
13
|
|
|
12
14
|
main().catch((error) => {
|
|
13
15
|
console.error('❌ Error:', error.message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pnpm-catalog-updates",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.19",
|
|
4
4
|
"description": "CLI application for pnpm-catalog-updates",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
"email": "evan@yldm.tech"
|
|
73
73
|
},
|
|
74
74
|
"license": "MIT",
|
|
75
|
+
"homepage": "https://pcu-cli.dev",
|
|
75
76
|
"repository": {
|
|
76
77
|
"type": "git",
|
|
77
78
|
"url": "https://github.com/houko/pnpm-catalog-updates.git",
|