create-auto-app 1.31.0 → 1.33.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.31.0",
3
+ "version": "1.33.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.31.0"
36
+ "@auto-engineer/id": "1.33.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/fs-extra": "^11.0.4",
@@ -0,0 +1,28 @@
1
+ {
2
+ "autoContinue": {
3
+ "mode": "smart",
4
+ "maxIterations": 0,
5
+ "iteration": 0,
6
+ "skipModes": [
7
+ "plan"
8
+ ]
9
+ },
10
+ "validateCommit": {
11
+ "mode": "strict",
12
+ "batchCount": 3
13
+ },
14
+ "denyList": {
15
+ "enabled": true,
16
+ "extraPatterns": []
17
+ },
18
+ "promptReminder": {
19
+ "enabled": true
20
+ },
21
+ "subagentHooks": {
22
+ "validateCommitOnExplore": false,
23
+ "validateCommitOnWork": true,
24
+ "validateCommitOnUnknown": true
25
+ },
26
+ "updatedAt": "2026-02-17T21:29:16.970Z",
27
+ "updatedBy": "init"
28
+ }
@@ -2,4 +2,3 @@ node_modules
2
2
  dist
3
3
  *.local
4
4
  .DS_Store
5
- .staging
@@ -40,7 +40,10 @@ const config: StorybookConfig = {
40
40
  options: {},
41
41
  },
42
42
  typescript: {
43
- reactDocgen: isFastMode ? false : "react-docgen",
43
+ reactDocgen: isFastMode ? false : "react-docgen-typescript",
44
+ reactDocgenTypescriptOptions: {
45
+ tsconfigPath: join(__dirname, "../tsconfig.app.json"),
46
+ },
44
47
  },
45
48
  viteFinal: (config) => {
46
49
  config.server = {
@@ -113,13 +113,12 @@ const darkTheme = create({
113
113
 
114
114
  const customTheme = initialIsDark ? darkTheme : lightTheme;
115
115
 
116
- // Hide the addon panel globally (Storybook 8+/10 API)
117
116
  addons.setConfig({
118
- bottomPanelHeight: 0,
119
- layoutCustomisations: {
120
- showPanel: () => false,
121
- },
122
117
  theme: customTheme,
118
+ sidebar: {
119
+ collapsedRoots: ['ui-components'],
120
+ },
121
+ showPanel: false,
123
122
  });
124
123
 
125
124
  // Set default story to Design System Overview if no path specified
@@ -98,7 +98,7 @@ const preview: Preview = {
98
98
  options: {
99
99
  showPanel: false,
100
100
  storySort: {
101
- order: ['Application Components', 'Design System', ['Overview', '*'], 'UI Components'],
101
+ order: ['Design System', ['Overview', '*'], 'UI Components'],
102
102
  },
103
103
  },
104
104
  darkMode: {
@@ -0,0 +1,17 @@
1
+ import type { CodegenConfig } from '@graphql-codegen/cli';
2
+
3
+ const config: CodegenConfig = {
4
+ schema: '../.context/schema.graphql',
5
+ documents: ['src/graphql/**/*.ts'],
6
+ ignoreNoDocuments: true,
7
+ generates: {
8
+ './src/gql/': {
9
+ preset: 'client',
10
+ config: {
11
+ documentMode: 'string',
12
+ },
13
+ },
14
+ },
15
+ };
16
+
17
+ export default config;
@@ -10,7 +10,9 @@
10
10
  "type-check": "tsc --noEmit -p tsconfig.app.json",
11
11
  "storybook": "storybook dev -p 6006",
12
12
  "storybook:fast": "STORYBOOK_FAST=1 storybook dev -p 6006",
13
- "build-storybook": "storybook build"
13
+ "build-storybook": "storybook build",
14
+ "codegen": "graphql-codegen",
15
+ "codegen:watch": "graphql-codegen --watch"
14
16
  },
15
17
  "dependencies": {
16
18
  "@base-ui/react": "^1.1.0",
@@ -39,6 +41,9 @@
39
41
  "zod": "^4.3.6"
40
42
  },
41
43
  "devDependencies": {
44
+ "@graphql-codegen/cli": "^6.1.1",
45
+ "@graphql-codegen/client-preset": "^5.2.2",
46
+ "@parcel/watcher": "^2.5.6",
42
47
  "@storybook/addon-docs": "^10.2.8",
43
48
  "@storybook/addon-mcp": "^0.2.2",
44
49
  "@storybook/react-vite": "^10.2.8",
@@ -47,6 +52,7 @@
47
52
  "@types/react-dom": "^19.2.3",
48
53
  "@vitejs/plugin-react-swc": "^4.2.2",
49
54
  "@vueless/storybook-dark-mode": "^10.0.7",
55
+ "graphql": "^16.12.0",
50
56
  "msw": "^2.12.10",
51
57
  "msw-storybook-addon": "^2.0.6",
52
58
  "storybook": "^10.2.8",