create-auto-app 1.128.0 → 1.128.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-auto-app",
|
|
3
|
-
"version": "1.128.
|
|
3
|
+
"version": "1.128.2",
|
|
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.128.
|
|
36
|
+
"@auto-engineer/id": "1.128.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -18,7 +18,7 @@ export const plugins = [
|
|
|
18
18
|
"@auto-engineer/app-assembler",
|
|
19
19
|
"@auto-engineer/job-graph-processor",
|
|
20
20
|
"@auto-engineer/submit-bug-report",
|
|
21
|
-
"@auto-engineer/
|
|
21
|
+
"@auto-engineer/set-theme",
|
|
22
22
|
];
|
|
23
23
|
|
|
24
24
|
export const pipeline = define("typical-example")
|
|
@@ -86,7 +86,7 @@ export const pipeline = define("typical-example")
|
|
|
86
86
|
if (!hasAnyFailures(allEvents)) {
|
|
87
87
|
const slicePath = extractSlicePath(events);
|
|
88
88
|
sliceRetryState.delete(slicePath);
|
|
89
|
-
return;
|
|
89
|
+
return { persist: true };
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
const slicePath = extractSlicePath(events);
|
|
@@ -115,7 +115,7 @@ export const pipeline = define("typical-example")
|
|
|
115
115
|
})
|
|
116
116
|
|
|
117
117
|
.declare("ProcessJobGraph")
|
|
118
|
-
.accepts(["ImplementComponent", "AssembleApp"])
|
|
118
|
+
.accepts(["ImplementComponent", "AssembleApp", "SetTheme"])
|
|
119
119
|
|
|
120
120
|
.on("ComponentImplemented")
|
|
121
121
|
.emit("RebuildComponentDB", () => ({
|
|
@@ -247,7 +247,7 @@ function incrementRetryCount(slicePath: string): number {
|
|
|
247
247
|
return attempts + 1;
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
-
const MAX_RETRIES =
|
|
250
|
+
const MAX_RETRIES = 3;
|
|
251
251
|
const sliceRetryState = new Map<string, number>();
|
|
252
252
|
const reportedSliceErrors = new Set<string>();
|
|
253
253
|
let projectRoot = "";
|