craby-gateway 0.28.4 → 0.29.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 +5 -7
- package/dist-sea/gateway.cjs +55 -55
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,8 @@ First-time setup now writes a user config file at `~/.craby-ai/gateway.yaml`.
|
|
|
14
14
|
|
|
15
15
|
## Publish
|
|
16
16
|
|
|
17
|
+
The published NPM package name is `craby-gateway`.
|
|
18
|
+
|
|
17
19
|
Set your npmjs access token in the repo root `.npmrc` file. A checked-in example lives at `.npmrc.example`, while `.npmrc` is gitignored:
|
|
18
20
|
|
|
19
21
|
```bash
|
|
@@ -26,18 +28,14 @@ Then edit `.npmrc` and set:
|
|
|
26
28
|
//registry.npmjs.org/:_authToken=npm_xxxxxxxxxxxxxxxxxxxx
|
|
27
29
|
```
|
|
28
30
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
pnpm --filter @remote-agent/desktop-gateway run pack:check
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
Publish from the workspace package:
|
|
31
|
+
For a normal release, bump `version` in `apps/desktop-gateway/package.json`, then publish from the repo root:
|
|
36
32
|
|
|
37
33
|
```bash
|
|
38
34
|
pnpm --filter @remote-agent/desktop-gateway run publish:npm
|
|
39
35
|
```
|
|
40
36
|
|
|
37
|
+
The publish script builds, bundles, prepares `dist-npm`, and publishes. Use `pack:check` only when you need to inspect package contents before publishing.
|
|
38
|
+
|
|
41
39
|
Useful verification commands:
|
|
42
40
|
|
|
43
41
|
```bash
|