p-backlog 0.2.2 → 0.2.3
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/CHANGELOG.md +5 -1
- package/README.md +18 -0
- package/README.ru.md +18 -0
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.2.
|
|
3
|
+
## 0.2.3
|
|
4
|
+
|
|
5
|
+
- README: screenshots of the task list, a task card and statistics (English UI in README.md, Russian UI in README.ru.md), generated from fictional demo data with `npm run screenshots`. No code changes.
|
|
6
|
+
|
|
7
|
+
## 0.2.2 (not published to npm; its changes ship in 0.2.3)
|
|
4
8
|
|
|
5
9
|
- README: npm, CI, Node and license badges; a section on using p-backlog together with code-review-graph (re-check by symbol). No code changes.
|
|
6
10
|
|
package/README.md
CHANGED
|
@@ -13,6 +13,23 @@ triages them in a local web app.
|
|
|
13
13
|
- **Backlog hygiene** — the agent re-checks tasks whose code changed and closes the ones no longer needed;
|
|
14
14
|
closed tasks are deleted after 7 days.
|
|
15
15
|
|
|
16
|
+
## Screenshots
|
|
17
|
+
|
|
18
|
+

|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
<details>
|
|
23
|
+
<summary>Statistics: overview, effect, code</summary>
|
|
24
|
+
|
|
25
|
+

|
|
26
|
+
|
|
27
|
+

|
|
28
|
+
|
|
29
|
+

|
|
30
|
+
|
|
31
|
+
</details>
|
|
32
|
+
|
|
16
33
|
## Getting started
|
|
17
34
|
|
|
18
35
|
1. **Install** (needs Node.js 22.13 or newer):
|
|
@@ -238,6 +255,7 @@ npx playwright install chromium # once, before the first e2e run
|
|
|
238
255
|
npm run test:e2e # Playwright: live list update
|
|
239
256
|
|
|
240
257
|
npm run test:package # the tarball install path end to end on this OS (slow)
|
|
258
|
+
npm run screenshots # README screenshots on demo data, into docs/screenshots
|
|
241
259
|
```
|
|
242
260
|
|
|
243
261
|
To try a build the way a published package would install, without publishing it:
|
package/README.ru.md
CHANGED
|
@@ -13,6 +13,23 @@
|
|
|
13
13
|
- **Порядок в беклоге** — агент перепроверяет задачи, чей код изменился, и закрывает ненужные; закрытые
|
|
14
14
|
задачи удаляются через 7 дней.
|
|
15
15
|
|
|
16
|
+
## Скриншоты
|
|
17
|
+
|
|
18
|
+

|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
<details>
|
|
23
|
+
<summary>Статистика: обзор, эффект, код</summary>
|
|
24
|
+
|
|
25
|
+

|
|
26
|
+
|
|
27
|
+

|
|
28
|
+
|
|
29
|
+

|
|
30
|
+
|
|
31
|
+
</details>
|
|
32
|
+
|
|
16
33
|
## Как начать
|
|
17
34
|
|
|
18
35
|
1. **Установка** (нужен Node.js 22.13 или новее):
|
|
@@ -233,6 +250,7 @@ npx playwright install chromium # один раз, перед первым з
|
|
|
233
250
|
npm run test:e2e # Playwright: живое обновление списка
|
|
234
251
|
|
|
235
252
|
npm run test:package # весь путь установки из tarball на этой ОС (медленный)
|
|
253
|
+
npm run screenshots # скриншоты для README на демо-данных, в docs/screenshots
|
|
236
254
|
```
|
|
237
255
|
|
|
238
256
|
Чтобы попробовать сборку так, будто это опубликованный пакет, без публикации:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "p-backlog",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Personal developer backlog for Claude Code: tasks as Markdown files, CLI, Stop hook and a local web UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"start": "npm run build && node dist/server.js",
|
|
51
51
|
"dev": "concurrently -k -n server,web \"tsx watch src/server/main.ts\" \"vite\"",
|
|
52
52
|
"test:e2e": "playwright test",
|
|
53
|
+
"screenshots": "npm run build && tsx scripts/screenshots/make.ts",
|
|
53
54
|
"test:package": "vitest run --config vitest.package.config.ts",
|
|
54
55
|
"prepare": "npm run build",
|
|
55
56
|
"test:coverage": "vitest run --coverage",
|
|
@@ -88,6 +89,7 @@
|
|
|
88
89
|
"react-router": "^8.4.0",
|
|
89
90
|
"recharts": "^3.10.1",
|
|
90
91
|
"remark-gfm": "^4.0.1",
|
|
92
|
+
"sharp": "^0.35.4",
|
|
91
93
|
"tsx": "^4.23.15",
|
|
92
94
|
"typescript": "~6.0.3",
|
|
93
95
|
"typescript-eslint": "^8.70.0",
|