@dafish/gogo-meta 1.2.0 → 1.3.0
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 +40 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,8 +13,44 @@ A modern TypeScript CLI for managing multi-repository projects. Execute commands
|
|
|
13
13
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
16
|
+
### npm (recommended)
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install -g @dafish/gogo-meta
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Or run without installing:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npx @dafish/gogo-meta --help
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Docker
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
docker pull ghcr.io/dafish/gogo-meta
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
When using Docker, mount your working directory and SSH keys so gogo can access your repositories:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
docker run -it --rm \
|
|
38
|
+
-v "$PWD":/workspace \
|
|
39
|
+
-v "$HOME/.ssh":/root/.ssh:ro \
|
|
40
|
+
-w /workspace \
|
|
41
|
+
ghcr.io/dafish/gogo-meta <command>
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Any `gogo` command shown in this README can be run via Docker by replacing `gogo` with the `docker run` call above. For convenience, you can create a shell alias:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
alias gogo='docker run -it --rm -v "$PWD":/workspace -v "$HOME/.ssh":/root/.ssh:ro -w /workspace ghcr.io/dafish/gogo-meta'
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### From source
|
|
51
|
+
|
|
16
52
|
```bash
|
|
17
|
-
git clone
|
|
53
|
+
git clone https://github.com/daFish/gogo-meta.git
|
|
18
54
|
cd gogo-meta
|
|
19
55
|
bun install
|
|
20
56
|
bun run build
|
|
@@ -514,8 +550,9 @@ gogo git status --include-pattern "^libs/"
|
|
|
514
550
|
|
|
515
551
|
## Requirements
|
|
516
552
|
|
|
517
|
-
-
|
|
518
|
-
-
|
|
553
|
+
- **npm install**: Node.js 24 or higher, Git
|
|
554
|
+
- **Docker**: Docker
|
|
555
|
+
- **From source**: Bun 1.x or higher, Git
|
|
519
556
|
|
|
520
557
|
## License
|
|
521
558
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dafish/gogo-meta",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "A modern CLI for managing multi-repository projects. Simplifies onboarding and enables sharing common agentic coding configurations across teams.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|