create-auto-app 0.9.12 → 0.9.13
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/finance-app/.context/design-system.md +142 -0
- package/templates/finance-app/.context/figma-variables.json +13759 -0
- package/templates/finance-app/.context/shadcn-filter.ts +29 -0
- package/templates/finance-app/auto.config.ts +180 -0
- package/templates/finance-app/flows/app-homepage.flow.ts +84 -0
- package/templates/finance-app/flows/landing-page.flow.ts +34 -0
- package/templates/finance-app/package.json +30 -0
- package/templates/finance-app/pnpm-lock.yaml +12518 -0
- package/templates/finance-app/pnpm-workspace.yaml +2 -0
- package/templates/finance-app/tsconfig.base.json +17 -0
- package/templates/finance-app/tsconfig.json +17 -0
- package/templates/finance-app/turbo.json +19 -0
- package/templates/questionnaires/auto.config.ts +1 -1
- package/templates/shopping-app/auto.config.ts +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"skipLibCheck": true,
|
|
7
|
+
"emitDecoratorMetadata": true,
|
|
8
|
+
"experimentalDecorators": true,
|
|
9
|
+
"outDir": "./dist",
|
|
10
|
+
"rootDir": ".",
|
|
11
|
+
"noEmit": false,
|
|
12
|
+
"strict": true,
|
|
13
|
+
"strictNullChecks": true
|
|
14
|
+
},
|
|
15
|
+
"include": ["flows/**/*", "vitest.config.ts"],
|
|
16
|
+
"exclude": ["dist", "node_modules"]
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"skipLibCheck": true,
|
|
7
|
+
"emitDecoratorMetadata": true,
|
|
8
|
+
"experimentalDecorators": true,
|
|
9
|
+
"outDir": "./dist",
|
|
10
|
+
"rootDir": ".",
|
|
11
|
+
"noEmit": false,
|
|
12
|
+
"strict": true,
|
|
13
|
+
"strictNullChecks": true
|
|
14
|
+
},
|
|
15
|
+
"include": ["flows/**/*", "vitest.config.ts"],
|
|
16
|
+
"exclude": ["dist", "node_modules"]
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://turbo.build/schema.json",
|
|
3
|
+
"extends": ["//"],
|
|
4
|
+
"tasks": {
|
|
5
|
+
"auto": {
|
|
6
|
+
"dependsOn": ["^build"],
|
|
7
|
+
"inputs": []
|
|
8
|
+
},
|
|
9
|
+
"auto:debug": {
|
|
10
|
+
"dependsOn": ["^build"],
|
|
11
|
+
"inputs": []
|
|
12
|
+
},
|
|
13
|
+
"build": {
|
|
14
|
+
"dependsOn": ["^build"],
|
|
15
|
+
"inputs": [],
|
|
16
|
+
"outputs": []
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -16,7 +16,7 @@ import type { ImplementClientCommand, ImplementClientEvents } from '@auto-engine
|
|
|
16
16
|
import type { GenerateClientCommand, GenerateClientEvents } from '@auto-engineer/frontend-generator-react-graphql';
|
|
17
17
|
|
|
18
18
|
export default autoConfig({
|
|
19
|
-
fileId: '
|
|
19
|
+
fileId: 'test2222', // unique 9-character base62 canvas file id where all flows in this project will be shown
|
|
20
20
|
|
|
21
21
|
plugins: [
|
|
22
22
|
'@auto-engineer/server-checks',
|