@omercnet/paseo-beads 0.2.0-next.129.1 → 0.2.0-next.133.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 +8 -27
- package/package.json +14 -19
- package/paseo-plugin.json +1 -1
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ failures provide a retry action.
|
|
|
56
56
|
|
|
57
57
|
## Limits
|
|
58
58
|
|
|
59
|
-
- Paseo 0.8.x or 0.9.x, starting with `0.9.0
|
|
59
|
+
- Paseo 0.8.x or 0.9.x, starting with `0.9.0`, with plugins enabled is required.
|
|
60
60
|
- Beads `bd` 1.0 or newer must be available on the Paseo daemon's `PATH`.
|
|
61
61
|
- A Beads project must be initialized in the workspace for issue data to appear.
|
|
62
62
|
- CLI calls time out after 10 seconds and accept at most 8 MiB of output. Unexpected CLI details stay
|
|
@@ -82,31 +82,14 @@ From npm:
|
|
|
82
82
|
paseo plugin install npm:@omercnet/paseo-beads
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
```bash
|
|
88
|
-
paseo plugin add omercnet/paseo-plugins:paseo-beads
|
|
89
|
-
```
|
|
90
|
-
|
|
91
|
-
With Paseo 0.9.0-beta.1 or newer, update an npm or Git installation with:
|
|
85
|
+
With Paseo 0.9.0 or newer, update the installed npm package with:
|
|
92
86
|
|
|
93
87
|
```bash
|
|
94
88
|
paseo plugin update paseo-beads
|
|
95
89
|
```
|
|
96
90
|
|
|
97
91
|
Paseo shows the installed and proposed revisions and asks for approval before applying an ordinary
|
|
98
|
-
update. Review the source changes before approving them.
|
|
99
|
-
installing it; installing an exact npm version or Git ref selects that revision once rather than
|
|
100
|
-
pinning future updates.
|
|
101
|
-
|
|
102
|
-
From a local checkout on the Paseo daemon host:
|
|
103
|
-
|
|
104
|
-
```bash
|
|
105
|
-
git clone https://github.com/omercnet/paseo-plugins.git
|
|
106
|
-
cd paseo-plugins/paseo-beads
|
|
107
|
-
npm ci
|
|
108
|
-
paseo plugin install "$PWD"
|
|
109
|
-
```
|
|
92
|
+
update. Review the source changes before approving them.
|
|
110
93
|
|
|
111
94
|
Open a workspace, choose **New tab** in Explorer, then select **Beads**. You can also run **Open
|
|
112
95
|
Beads** from the Command Center while viewing a workspace or one of its agents.
|
|
@@ -114,13 +97,11 @@ Beads** from the Command Center while viewing a workspace or one of its agents.
|
|
|
114
97
|
## Develop
|
|
115
98
|
|
|
116
99
|
```bash
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
npx paseo plugin install "$PWD"
|
|
123
|
-
npx paseo plugin reload paseo-beads
|
|
100
|
+
bun install
|
|
101
|
+
bun run check
|
|
102
|
+
bun run test
|
|
103
|
+
bun run test:coverage
|
|
104
|
+
bun run typecheck
|
|
124
105
|
```
|
|
125
106
|
|
|
126
107
|
The package is `@omercnet/paseo-beads` at version `0.1.0`. Release Please maintains versions,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omercnet/paseo-beads",
|
|
3
|
-
"version": "0.2.0-next.
|
|
3
|
+
"version": "0.2.0-next.133.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A dependency-aware Beads work queue for each Paseo workspace.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
|
-
"packageManager": "
|
|
20
|
+
"packageManager": "bun@1.4.2",
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=24"
|
|
23
23
|
},
|
|
@@ -40,33 +40,28 @@
|
|
|
40
40
|
"paseo-plugin.json"
|
|
41
41
|
],
|
|
42
42
|
"scripts": {
|
|
43
|
-
"check": "biome check
|
|
43
|
+
"check": "biome check .",
|
|
44
44
|
"check:write": "biome check --write .",
|
|
45
|
-
"test": "run
|
|
45
|
+
"test": "vitest run",
|
|
46
46
|
"test:coverage": "vitest run --coverage --coverage.reporter=text --coverage.reporter=lcov --coverage.thresholds.lines=90 --coverage.thresholds.functions=85",
|
|
47
47
|
"typecheck": "tsc --noEmit",
|
|
48
|
-
"package
|
|
49
|
-
"verify:package": "node scripts/verify-package.ts",
|
|
50
|
-
"build": "node ../.github/scripts/build-plugin.mjs",
|
|
51
|
-
"test:ci:unit": "vitest run"
|
|
48
|
+
"verify:package": "node scripts/verify-package.ts"
|
|
52
49
|
},
|
|
53
50
|
"devDependencies": {
|
|
54
|
-
"@biomejs/biome": "^2.5.
|
|
55
|
-
"@getpaseo/cli": "0.9.0
|
|
56
|
-
"@getpaseo/client": "0.9.0
|
|
57
|
-
"@getpaseo/plugin": "0.9.0
|
|
58
|
-
"@getpaseo/protocol": "0.9.0
|
|
59
|
-
"@getpaseo/server": "0.9.0-beta.1",
|
|
51
|
+
"@biomejs/biome": "^2.5.10",
|
|
52
|
+
"@getpaseo/cli": "0.9.0",
|
|
53
|
+
"@getpaseo/client": "0.9.0",
|
|
54
|
+
"@getpaseo/plugin": "0.9.0",
|
|
55
|
+
"@getpaseo/protocol": "0.9.0",
|
|
60
56
|
"@tanstack/react-query": "^5.102.3",
|
|
61
|
-
"@types/node": "^24.
|
|
62
|
-
"@types/react": "
|
|
57
|
+
"@types/node": "^24.10.1",
|
|
58
|
+
"@types/react": "^19.2.18",
|
|
63
59
|
"@vitest/coverage-v8": "^5.0.0",
|
|
64
60
|
"fflate": "^0.8.3",
|
|
65
|
-
"npm-run-all2": "^9.0.3",
|
|
66
61
|
"react": "19.1.0",
|
|
67
62
|
"react-native": "0.81.5",
|
|
68
|
-
"typescript": "^7.0.
|
|
63
|
+
"typescript": "^7.0.2",
|
|
69
64
|
"vitest": "^5.0.0",
|
|
70
|
-
"zod": "
|
|
65
|
+
"zod": "4.4.3"
|
|
71
66
|
}
|
|
72
67
|
}
|