bkper 4.29.1 → 4.29.2

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.
@@ -19,7 +19,23 @@ A standalone app becomes eligible for Bkper-managed source when:
19
19
  - The working tree is clean and has at least one commit.
20
20
  - No Git remote is configured.
21
21
 
22
- `bkper app init` initializes Git on `main`, but it does not create the first commit. Review and commit the app before its first sync:
22
+ If the app source already exists but is not yet versioned, do not run `bkper app init` again. From the directory containing `bkper.yaml`, initialize it and review the files before committing. Update `.gitignore` first so local secrets, dependencies, and build output are not staged.
23
+
24
+ ```bash
25
+ git init -b main
26
+
27
+ # Review files and update .gitignore before staging
28
+ git status --short
29
+
30
+ git add .
31
+
32
+ # Verify exactly what will be committed
33
+ git status --short
34
+ git commit -m "Initial app"
35
+ bkper app sync
36
+ ```
37
+
38
+ For a new app, `bkper app init` initializes Git on `main`, but it does not create the first commit. Review and commit the app before its first sync:
23
39
 
24
40
  ```bash
25
41
  bkper app init my-app
@@ -32,7 +48,7 @@ git commit -m "Initial app"
32
48
  bkper app sync
33
49
  ```
34
50
 
35
- For an eligible app, `bkper app sync` creates its private Bkper-managed source and configures it as `origin`. The same command also syncs app metadata from `bkper.yaml`.
51
+ For an eligible new or existing app, `bkper app sync` creates its private Bkper-managed source and configures it as `origin`. The same command also syncs app metadata from `bkper.yaml`.
36
52
 
37
53
  ## Clone and continue together
38
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkper",
3
- "version": "4.29.1",
3
+ "version": "4.29.2",
4
4
  "description": "Official Bkper CLI for accounting data, automation, apps, and AI agents",
5
5
  "bin": {
6
6
  "bkper": "./lib/cli.js"
@@ -61,8 +61,8 @@
61
61
  "upgrade:api": "bun update @bkper/bkper-api-types --latest && bun update bkper-js --latest"
62
62
  },
63
63
  "dependencies": {
64
- "@earendil-works/pi-coding-agent": "0.84.3",
65
- "@earendil-works/pi-tui": "0.84.3",
64
+ "@earendil-works/pi-coding-agent": "0.84.4",
65
+ "@earendil-works/pi-tui": "0.84.4",
66
66
  "bkper-js": "^2.42.0",
67
67
  "commander": "^13.1.0",
68
68
  "dotenv": "^8.2.0",