@omercnet/paseo-beads 0.1.0-next.75.1 → 0.1.0-next.84.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 +15 -4
- package/package.json +5 -5
- package/paseo-plugin.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ failures provide a retry action.
|
|
|
55
55
|
|
|
56
56
|
## Limits
|
|
57
57
|
|
|
58
|
-
- Paseo
|
|
58
|
+
- Paseo 0.8.x or 0.9.x, starting with `0.9.0-beta.1`, with plugins enabled is required.
|
|
59
59
|
- Beads `bd` 1.0 or newer must be available on the Paseo daemon's `PATH`.
|
|
60
60
|
- A Beads project must be initialized in the workspace for issue data to appear.
|
|
61
61
|
- CLI calls time out after 10 seconds and accept at most 8 MiB of output. Unexpected CLI details stay
|
|
@@ -87,6 +87,17 @@ From GitHub:
|
|
|
87
87
|
paseo plugin add omercnet/paseo-plugins:paseo-beads
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
+
With Paseo 0.9.0-beta.1 or newer, update an npm or Git installation with:
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
paseo plugin update paseo-beads
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Paseo shows the installed and proposed revisions and asks for approval before applying an ordinary
|
|
97
|
+
update. Review the source changes before approving them. Use `--check` to check for an update without
|
|
98
|
+
installing it; installing an exact npm version or Git ref selects that revision once rather than
|
|
99
|
+
pinning future updates.
|
|
100
|
+
|
|
90
101
|
From a local checkout on the Paseo daemon host:
|
|
91
102
|
|
|
92
103
|
```bash
|
|
@@ -107,9 +118,9 @@ npm run check
|
|
|
107
118
|
npm test
|
|
108
119
|
npm run test:coverage
|
|
109
120
|
npm run typecheck
|
|
110
|
-
paseo plugin install "$PWD"
|
|
111
|
-
paseo plugin reload paseo-beads
|
|
121
|
+
npx paseo plugin install "$PWD"
|
|
122
|
+
npx paseo plugin reload paseo-beads
|
|
112
123
|
```
|
|
113
124
|
|
|
114
|
-
The package is `@omercnet/paseo-beads` at version `0.0
|
|
125
|
+
The package is `@omercnet/paseo-beads` at version `0.1.0`. Release Please maintains versions,
|
|
115
126
|
changelog entries, component tags, and GitHub releases from Conventional Commits in the monorepo.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omercnet/paseo-beads",
|
|
3
|
-
"version": "0.1.0-next.
|
|
3
|
+
"version": "0.1.0-next.84.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A dependency-aware Beads work queue for each Paseo workspace.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@biomejs/biome": "^2.5.10",
|
|
55
|
-
"@getpaseo/cli": "0.
|
|
56
|
-
"@getpaseo/client": "0.
|
|
57
|
-
"@getpaseo/plugin": "0.
|
|
58
|
-
"@getpaseo/protocol": "0.
|
|
55
|
+
"@getpaseo/cli": "0.9.0-beta.1",
|
|
56
|
+
"@getpaseo/client": "0.9.0-beta.1",
|
|
57
|
+
"@getpaseo/plugin": "0.9.0-beta.1",
|
|
58
|
+
"@getpaseo/protocol": "0.9.0-beta.1",
|
|
59
59
|
"@tanstack/react-query": "^5.102.3",
|
|
60
60
|
"@types/node": "^24.5.2",
|
|
61
61
|
"@types/react": "~19.2.0",
|