recallx 1.0.4 → 1.0.5
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 +14 -0
- package/app/shared/version.js +1 -1
- package/dist/renderer/assets/{ProjectGraphCanvas-CQV7FYSd.js → ProjectGraphCanvas-Crp1MklO.js} +2 -2
- package/dist/renderer/assets/{index-BM5Zf6Wz.js → index-CSO0evPr.js} +2 -2
- package/dist/renderer/index.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,11 +69,25 @@ npm start
|
|
|
69
69
|
Checks:
|
|
70
70
|
|
|
71
71
|
```bash
|
|
72
|
+
npm run branch:check
|
|
73
|
+
npm run version:check
|
|
72
74
|
npm run check
|
|
73
75
|
npm test
|
|
74
76
|
npm run build
|
|
75
77
|
```
|
|
76
78
|
|
|
79
|
+
Start unrelated work in a separate branch/worktree instead of stacking it on the current checkout:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
npm run branch:new -- fix-short-name
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
When you are preparing a release, bump from the highest known version instead of whatever the current branch happens to say:
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
npm run version:bump -- patch
|
|
89
|
+
```
|
|
90
|
+
|
|
77
91
|
If you want an installable runtime instead of source-run workflows, use one of the npm distribution paths below.
|
|
78
92
|
|
|
79
93
|
## 2. npm Full Runtime (`recallx`)
|
package/app/shared/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const RECALLX_VERSION = "1.0.
|
|
1
|
+
export const RECALLX_VERSION = "1.0.5";
|