create-twenty-app 0.6.3 → 0.6.4-canary.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/README.md +3 -1
- package/dist/cli.cjs +184 -42
- package/dist/cli.mjs +1375 -1170
- 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
|
@@ -41,7 +41,7 @@ yarn twenty auth:login
|
|
|
41
41
|
yarn twenty entity:add
|
|
42
42
|
|
|
43
43
|
# Start dev mode: watches, builds, and syncs local changes to your workspace
|
|
44
|
-
# (also auto-generates typed
|
|
44
|
+
# (also auto-generates typed CoreApiClient in node_modules/twenty-sdk/generated — MetadataApiClient ships pre-built with the SDK)
|
|
45
45
|
yarn twenty app:dev
|
|
46
46
|
|
|
47
47
|
# Watch your application's function logs
|
|
@@ -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.
|