create-auto-app 1.75.0 → 1.77.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.75.0",
3
+ "version": "1.77.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.75.0"
36
+ "@auto-engineer/id": "1.77.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/fs-extra": "^11.0.4",
@@ -16,6 +16,7 @@ export const plugins = [
16
16
  "@auto-engineer/dev-server",
17
17
  "@auto-engineer/job-graph-processor",
18
18
  "@auto-engineer/submit-bug-report",
19
+ "@auto-engineer/generate-theme",
19
20
  ];
20
21
 
21
22
  export const pipeline = define("typical-example")
@@ -113,6 +114,9 @@ export const pipeline = define("typical-example")
113
114
  .declare("SubmitBugReport")
114
115
  .accepts([])
115
116
 
117
+ .declare("GenerateTheme")
118
+ .accepts([])
119
+
116
120
  .on("ComponentImplemented")
117
121
  .emit("RebuildComponentDB", () => ({
118
122
  baseDir: resolvePath("./client"),
@@ -0,0 +1,4 @@
1
+ {
2
+ "modelPath": "./.context/schema.json",
3
+ "clientDir": "./client"
4
+ }