create-auto-app 1.70.0 → 1.72.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-auto-app",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.72.0",
|
|
4
4
|
"description": "Create Auto Engineer apps with no configuration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"fs-extra": "^11.2.0",
|
|
34
34
|
"inquirer": "^9.2.15",
|
|
35
35
|
"ora": "^8.0.1",
|
|
36
|
-
"@auto-engineer/id": "1.
|
|
36
|
+
"@auto-engineer/id": "1.72.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Event } from "@auto-engineer/message-bus";
|
|
2
|
+
import type { ConcurrencyConfig } from "@auto-engineer/pipeline";
|
|
2
3
|
import { define } from "@auto-engineer/pipeline";
|
|
3
4
|
import type { AllCheckFailedEvents } from "@auto-engineer/server-checks";
|
|
4
5
|
import type { SliceImplementedEvent } from "@auto-engineer/server-implementer";
|
|
@@ -159,10 +160,16 @@ export function setProjectRoot(root: string): void {
|
|
|
159
160
|
projectRoot = root;
|
|
160
161
|
}
|
|
161
162
|
|
|
163
|
+
export const concurrency: Record<string, ConcurrencyConfig> = {
|
|
164
|
+
GenerateServer: { strategy: "cancel-in-progress" },
|
|
165
|
+
ProcessJobGraph: { strategy: "cancel-in-progress" },
|
|
166
|
+
};
|
|
167
|
+
|
|
162
168
|
export default {
|
|
163
169
|
fileId,
|
|
164
170
|
plugins,
|
|
165
171
|
pipeline,
|
|
172
|
+
concurrency,
|
|
166
173
|
tunnel: {
|
|
167
174
|
enabled: false,
|
|
168
175
|
},
|