tandem-editor 0.6.0 → 0.6.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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/cli/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.6.1] - 2026-04-15
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Tauri desktop app fails to start** — `src/cli/skill-content.ts` reads `skills/tandem/SKILL.md` at module-init via `readFileSync`, and `src/server/mcp/api-routes.ts` transitively imports it, so the bundled sidecar server crashed on startup with `ENOENT: skills/tandem/SKILL.md`. The `skills/` directory was never declared in `src-tauri/tauri.conf.json` bundle resources (latent since the v0.5.1 refactor to read SKILL.md at runtime). Add `"../skills/": "skills/"` so the sidecar's relative path resolution matches the npm-install layout. npm-published 0.6.0 was unaffected because `skills/` ships in the npm tarball via `package.json` `files`.
|
|
15
|
+
|
|
10
16
|
## [0.6.0] - 2026-04-15
|
|
11
17
|
|
|
12
18
|
### Added
|
package/dist/cli/index.js
CHANGED
|
@@ -905,7 +905,7 @@ var init_start = __esm({
|
|
|
905
905
|
|
|
906
906
|
// src/cli/index.ts
|
|
907
907
|
import updateNotifier from "update-notifier";
|
|
908
|
-
var version = true ? "0.6.
|
|
908
|
+
var version = true ? "0.6.1" : "0.0.0-dev";
|
|
909
909
|
var args = process.argv.slice(2);
|
|
910
910
|
var isStdioMode = args[0] === "mcp-stdio" || args[0] === "channel";
|
|
911
911
|
if (!isStdioMode) {
|