create-twenty-app 0.6.2 → 0.6.3-canary
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/README.md +2 -0
- package/dist/cli.cjs +185 -44
- package/dist/cli.mjs +1450 -1247
- package/dist/constants/base-application/README.md +11 -0
- package/dist/constants/base-application/tsconfig.json +1 -1
- package/dist/types/scaffolding-options.d.ts +1 -0
- package/dist/utils/test-template.d.ts +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,6 +89,7 @@ In interactive mode, you can pick from:
|
|
|
89
89
|
- **Example view** — a saved view for the example object (`views/example-view.ts`)
|
|
90
90
|
- **Example navigation menu item** — a sidebar link (`navigation-menu-items/example-navigation-menu-item.ts`)
|
|
91
91
|
- **Example skill** — an AI agent skill definition (`skills/example-skill.ts`)
|
|
92
|
+
- **Integration test** — a vitest integration test verifying app installation (`__tests__/app-install.integration-test.ts`)
|
|
92
93
|
|
|
93
94
|
## What gets scaffolded
|
|
94
95
|
|
|
@@ -108,6 +109,7 @@ In interactive mode, you can pick from:
|
|
|
108
109
|
- `views/example-view.ts` — Example saved view for the example object
|
|
109
110
|
- `navigation-menu-items/example-navigation-menu-item.ts` — Example sidebar navigation link
|
|
110
111
|
- `skills/example-skill.ts` — Example AI agent skill definition
|
|
112
|
+
- `__tests__/app-install.integration-test.ts` — Integration test that builds, installs, and verifies the app (includes `vitest.config.ts`, `tsconfig.spec.json`, and a setup file)
|
|
111
113
|
|
|
112
114
|
## Next steps
|
|
113
115
|
- Run `yarn twenty help` to see all available commands.
|