create-alta-app 1.6.3 → 1.7.0

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 +5 -10
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -351,20 +351,15 @@ async function main() {
351
351
  },
352
352
  },
353
353
  serve: {
354
- executor: '@nx/vite:dev-server',
354
+ executor: 'nx:run-commands',
355
355
  defaultConfiguration: 'development',
356
356
  options: {
357
- buildTarget: `${projectName}:build`,
357
+ command: 'npx react-router dev',
358
+ cwd: `apps/ai-engineer/${projectName}`,
358
359
  },
359
360
  configurations: {
360
- development: {
361
- buildTarget: `${projectName}:build:development`,
362
- hmr: true,
363
- },
364
- production: {
365
- buildTarget: `${projectName}:build:production`,
366
- hmr: false,
367
- },
361
+ development: {},
362
+ production: {},
368
363
  },
369
364
  },
370
365
  preview: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-alta-app",
3
- "version": "1.6.3",
3
+ "version": "1.7.0",
4
4
  "description": "Create a new Alta project",
5
5
  "bin": {
6
6
  "create-alta-app": "./index.mjs"