@xqli02/mneme 0.1.3 → 0.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xqli02/mneme",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Three-layer memory architecture for AI coding agents (Ledger + Beads + OpenCode)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -62,7 +62,7 @@ function scaffoldFiles(locale = "en") {
62
62
  mkdirSync(dir, { recursive: true });
63
63
  }
64
64
 
65
- const templatePath = LOCALIZABLE.has(templateName) && locale !== "en"
65
+ const templatePath = LOCALIZABLE.has(templateName)
66
66
  ? join(TEMPLATES_DIR, locale, templateName)
67
67
  : join(TEMPLATES_DIR, templateName);
68
68
  const content = readFileSync(templatePath, "utf-8");
File without changes