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.
- package/index.mjs +5 -10
- 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: '
|
|
354
|
+
executor: 'nx:run-commands',
|
|
355
355
|
defaultConfiguration: 'development',
|
|
356
356
|
options: {
|
|
357
|
-
|
|
357
|
+
command: 'npx react-router dev',
|
|
358
|
+
cwd: `apps/ai-engineer/${projectName}`,
|
|
358
359
|
},
|
|
359
360
|
configurations: {
|
|
360
|
-
development: {
|
|
361
|
-
|
|
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: {
|