create-holon 0.1.0 → 0.1.1
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,12 +1,9 @@
|
|
|
1
|
-
// The
|
|
1
|
+
// The holon-compile config: one package, one domain, one module file.
|
|
2
2
|
// Read-side declarations (queries/counts/...) are auto-discovered from the
|
|
3
3
|
// module's exports by shape — nothing to wire here.
|
|
4
|
+
// Building a Flutter app too? Add `dart: true` for the typed Dart frontend
|
|
5
|
+
// (build/dart/) alongside the TS client.
|
|
4
6
|
export default {
|
|
5
7
|
name: "guestbook",
|
|
6
8
|
domains: [{ key: "guestbook", modules: ["./domains/guestbook.ts"] }],
|
|
7
|
-
// Typed Dart frontend (the Flutter sibling of build/guestbook.client.ts):
|
|
8
|
-
// build/dart/guestbook.dart + the vendored nomos_dsl support files. A Flutter
|
|
9
|
-
// app vendors the build/dart/ directory as-is. `dart: { out: "some/dir" }`
|
|
10
|
-
// overrides the destination.
|
|
11
|
-
dart: true,
|
|
12
9
|
};
|