@gzl10/nexus-backend 0.19.0 → 0.20.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/claude-commands/nexus-docs.md +2 -2
- package/claude-commands/nexus-update-tutorial-app.md +2 -2
- package/claude-commands/nexus-update-tutorial-plugin.md +1 -1
- package/dist/cli.js +264 -403
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +684 -714
- package/dist/index.js.map +1 -1
- package/dist/main.js +679 -709
- package/dist/main.js.map +1 -1
- package/dist/migration-helpers/index.js +388 -526
- package/dist/migration-helpers/index.js.map +1 -1
- package/dist/testing/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -32,8 +32,8 @@ Use Grep to search for the concept across these files.
|
|
|
32
32
|
|
|
33
33
|
Check demos for usage examples:
|
|
34
34
|
|
|
35
|
-
- `demos/backend
|
|
36
|
-
- `demos/plugin
|
|
35
|
+
- `demos/demo-backend/` — app developer patterns
|
|
36
|
+
- `demos/demo-plugin/` — plugin developer patterns
|
|
37
37
|
|
|
38
38
|
## Step 3: Explain
|
|
39
39
|
|
|
@@ -14,8 +14,8 @@ Read these files to understand the current state of the API:
|
|
|
14
14
|
2. `packages/backend/AGENTS.md` — Backend reference, CLI, gotchas
|
|
15
15
|
3. `packages/client/AGENTS.md` — Client reference, NexusApi structure
|
|
16
16
|
4. `packages/ui/AGENTS.md` — UI reference, bootstrap, composables
|
|
17
|
-
5. `demos/backend
|
|
18
|
-
6. `demos/
|
|
17
|
+
5. `demos/demo-backend/src/modules/` — app developer examples
|
|
18
|
+
6. `demos/demo-embedded/src/main.ts` — frontend bootstrap example (embedded SPA)
|
|
19
19
|
7. `packages/sdk/src/types/entity.ts` — entity definition types (verify signatures)
|
|
20
20
|
8. `packages/sdk/src/types/manifest.ts` — ModuleManifest, Category (verify valid values)
|
|
21
21
|
9. `packages/sdk/src/fields/` — check for new/changed field factories
|
|
@@ -12,7 +12,7 @@ Read these files to understand the current state of the plugin API:
|
|
|
12
12
|
|
|
13
13
|
1. `packages/sdk/AGENTS.md` — SDK reference and gotchas
|
|
14
14
|
2. `packages/backend/AGENTS.md` — Backend reference, CLI, gotchas
|
|
15
|
-
3. `demos/plugin
|
|
15
|
+
3. `demos/demo-plugin/` — plugin developer reference (all files)
|
|
16
16
|
4. `plugins/tags/src/index.ts` — simplest real plugin
|
|
17
17
|
5. `packages/sdk/src/types/manifest.ts` — PluginManifest interface (verify)
|
|
18
18
|
6. `packages/sdk/src/types/entity.ts` — entity types (verify)
|