create-alta-app 1.6.1 → 1.6.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.
Files changed (2) hide show
  1. package/index.mjs +2 -1
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -264,7 +264,8 @@ async function main() {
264
264
  console.log(pc.magenta(' ┗' + '━'.repeat(W) + '┛'));
265
265
  console.log('');
266
266
 
267
- const MONOREPO_BASE = path.join(os.homedir(), 'alta', 'apps', 'ai-engineer');
267
+ // Install under apps/ai-engineer/ relative to cwd (the monorepo root)
268
+ const MONOREPO_BASE = path.join(process.cwd(), 'apps', 'ai-engineer');
268
269
  const argName = process.argv[2];
269
270
 
270
271
  const response = await prompts(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-alta-app",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Create a new Alta project",
5
5
  "bin": {
6
6
  "create-alta-app": "./index.mjs"