create-auto-app 1.106.0 → 1.107.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 +2 -2
- package/templates/typical/auto.config.ts +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-auto-app",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.107.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.107.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -82,7 +82,7 @@ export const pipeline = define("typical-example")
|
|
|
82
82
|
fix: true,
|
|
83
83
|
}))
|
|
84
84
|
|
|
85
|
-
.settled(["CheckTests", "CheckTypes", "CheckLint"])
|
|
85
|
+
.settled(["CheckTests", "CheckTypes", "CheckLint"], "Slice Checks Settle")
|
|
86
86
|
.dispatch({ dispatches: ["ImplementSlice"] }, (events, send) => {
|
|
87
87
|
const allEvents = gatherAllCheckEvents(events);
|
|
88
88
|
|
|
@@ -127,12 +127,15 @@ export const pipeline = define("typical-example")
|
|
|
127
127
|
.accepts([])
|
|
128
128
|
|
|
129
129
|
.on("ComponentImplemented")
|
|
130
|
-
.handle(
|
|
131
|
-
|
|
132
|
-
extractComponentKey(e.data.targetDir),
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
130
|
+
.handle(
|
|
131
|
+
(e: ComponentImplementedEvent) => {
|
|
132
|
+
componentJobCache.set(extractComponentKey(e.data.targetDir), {
|
|
133
|
+
targetDir: e.data.targetDir,
|
|
134
|
+
job: e.data.job,
|
|
135
|
+
});
|
|
136
|
+
},
|
|
137
|
+
{ emits: ["CheckTests", "CheckTypes", "CheckLint"] },
|
|
138
|
+
)
|
|
136
139
|
|
|
137
140
|
.on("ComponentImplemented")
|
|
138
141
|
.emit("CheckTests", (e: ComponentImplementedEvent) => ({
|
|
@@ -149,7 +152,7 @@ export const pipeline = define("typical-example")
|
|
|
149
152
|
fix: true,
|
|
150
153
|
}))
|
|
151
154
|
|
|
152
|
-
.settled(["CheckTests", "CheckTypes", "CheckLint"])
|
|
155
|
+
.settled(["CheckTests", "CheckTypes", "CheckLint"], "Component Checks Settle")
|
|
153
156
|
.dispatch({ dispatches: ["ImplementComponent"] }, (events, send) => {
|
|
154
157
|
const allEvents = gatherAllCheckEvents(events);
|
|
155
158
|
const targetDir = extractTargetDirectory(events);
|
|
@@ -262,9 +265,6 @@ export const pipeline = define("typical-example")
|
|
|
262
265
|
|
|
263
266
|
.build();
|
|
264
267
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
268
|
export function resetState(): void {
|
|
269
269
|
sliceRetryState.clear();
|
|
270
270
|
componentRetryState.clear();
|