create-lore 0.12.2 → 0.12.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.
@@ -164,8 +164,7 @@ fs.writeFileSync(
164
164
  // -- Write .env for docker compose project naming --
165
165
  // docker compose reads .env from the project directory (where the command runs),
166
166
  // not from the directory containing the compose file.
167
- const envContent = fs.readFileSync(path.join(tplDir, 'env.template'), 'utf8')
168
- .replace('{{name}}', projectName);
167
+ const envContent = fs.readFileSync(path.join(tplDir, 'env.template'), 'utf8').replace('{{name}}', projectName);
169
168
  fs.writeFileSync(path.join(targetDir, '.env'), envContent);
170
169
 
171
170
  // -- Initialize git --
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-lore",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "description": "Create a new Lore knowledge-persistent agent repo",
5
5
  "bin": {
6
6
  "create-lore": "bin/create-lore.js"