create-geonosis 2.4.2 → 2.4.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # create-geonosis
2
2
 
3
+ ## 2.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - @geonosis/cli@2.4.3
8
+
3
9
  ## 2.4.2
4
10
 
5
11
  ### Patch Changes
@@ -24,12 +24,25 @@ var SEARCH = {
24
24
  "import { pgFtsSearchIndex, type SearchIndex, type SearchProjections } from '@geonosis/search'"
25
25
  ],
26
26
  name: "@geonosis/search",
27
- version: "0.3.5"
27
+ version: "0.3.6"
28
28
  };
29
- var DOMAINS = [SEARCH];
29
+ var DOCUMENT = {
30
+ at: "domains/document",
31
+ built: [" document: DOCUMENT_ENTITIES,"],
32
+ declarations: [
33
+ "/** Every `Document.extend` this repo declares, by the name its rows carry \u2014 grow this map. */",
34
+ "const DOCUMENT_ENTITIES = documentEntities({})"
35
+ ],
36
+ field: "document",
37
+ fieldType: "ReturnType<typeof documentEntities>",
38
+ imports: ["import { documentEntities } from '@geonosis/document'"],
39
+ name: "@geonosis/document",
40
+ version: "0.1.0"
41
+ };
42
+ var DOMAINS = [SEARCH, DOCUMENT];
30
43
  var DOMAIN_NAMES = DOMAINS.map((one) => one.field);
31
44
  var FOUNDATIONS = [
32
- { at: "foundations/db", name: "@geonosis/db", version: "0.6.0" },
45
+ { at: "foundations/db", name: "@geonosis/db", version: "0.7.0" },
33
46
  { at: "foundations/events", name: "@geonosis/events", version: "2.1.0" }
34
47
  ];
35
48
  var domainsNamed = (named) => named.map((one) => {
@@ -408,7 +421,7 @@ var workspacesOf = (answers) => {
408
421
 
409
422
  // src/files.ts
410
423
  import { countersFor, LAW_SOURCE, rulesFor, tiersFor } from "@geonosis/cli";
411
- var VERSION = "2.4.2";
424
+ var VERSION = "2.4.3";
412
425
  var SCHEMA = "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json";
413
426
  var CATALOG = {
414
427
  "@types/node": "^24.3.0",
@@ -11,7 +11,7 @@ import {
11
11
  parseArgs,
12
12
  wantsInstall,
13
13
  writeScaffold
14
- } from "./chunk-AFD22U4F.js";
14
+ } from "./chunk-PQVSQ44M.js";
15
15
 
16
16
  // src/create-geonosis-cli.ts
17
17
  import { existsSync as existsSync2 } from "fs";
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ import {
23
23
  wantsInstall,
24
24
  workspacesOf,
25
25
  writeScaffold
26
- } from "./chunk-AFD22U4F.js";
26
+ } from "./chunk-PQVSQ44M.js";
27
27
  export {
28
28
  BACKENDS,
29
29
  CORPUS_DIR,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-geonosis",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "types": "./dist/index.d.ts",
5
5
  "description": "Scaffold a microcompany repo that passes its own geonosis gates on day one.",
6
6
  "keywords": [
@@ -35,7 +35,7 @@
35
35
  "dist"
36
36
  ],
37
37
  "dependencies": {
38
- "@geonosis/cli": "2.4.2"
38
+ "@geonosis/cli": "2.4.3"
39
39
  },
40
40
  "engines": {
41
41
  "node": ">=22"