genesis-compiler 1.2.3 → 1.2.4

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.
@@ -8,6 +8,17 @@ MySQL persistence and migration conventions.
8
8
 
9
9
  - Nothing.
10
10
 
11
+ ## Adoption
12
+
13
+ - Identify the application's accepted connection alternatives, client/driver,
14
+ migration directories and ledger, transaction ownership, and the exact
15
+ preparation command without connecting to or mutating a database.
16
+ - Distinguish fresh-schema creation from existing-database upgrade. Record how
17
+ package/application migrations are ordered and how a retained ledger prevents
18
+ historical migrations from rerunning.
19
+ - Identify app-owned seed behavior and whether it is deterministic and
20
+ idempotent. A migration-only command is not a complete seed contract.
21
+
11
22
  ## Deslop
12
23
 
13
24
  - Keep connection configuration, transaction ownership, and database error
@@ -12,6 +12,17 @@ Node.js package, command, module, dependency, and test conventions.
12
12
 
13
13
  - `javascript`
14
14
 
15
+ ## Adoption
16
+
17
+ - Identify the package manager from the lockfile and preserve the existing
18
+ module system, supported Node.js version, package entrypoints, and executable
19
+ commands.
20
+ - Record the source's real dependency installation, build, verification,
21
+ development, and production commands. Do not assume `npm run develop`,
22
+ `npm test`, or `npm start` exists merely because a current foundation uses it.
23
+ - Identify every long-running process, its workdir, host/port handling,
24
+ readiness signal, and shutdown ownership before declaring Launch.
25
+
15
26
  ## Deslop
16
27
 
17
28
  - Preserve the package's existing module system, package manager, public
@@ -8,6 +8,18 @@ PostgreSQL persistence and migration conventions.
8
8
 
9
9
  - Nothing.
10
10
 
11
+ ## Adoption
12
+
13
+ - Identify the application's accepted connection alternatives, client/driver,
14
+ migration directories and ledger, transaction ownership, search-path/schema
15
+ assumptions, and the exact preparation command without connecting to or
16
+ mutating a database.
17
+ - Distinguish fresh-schema creation from existing-database upgrade. Record how
18
+ package/application migrations are ordered and how a retained ledger prevents
19
+ historical migrations from rerunning.
20
+ - Identify app-owned seed behavior and whether it is deterministic and
21
+ idempotent. A migration-only command is not a complete seed contract.
22
+
11
23
  ## Deslop
12
24
 
13
25
  - Keep connection configuration, transaction ownership, and database error
@@ -17,3 +17,12 @@ Vue component, reactive state, resource hydration, routing, and screen-state con
17
17
  - Keep genuinely change-only watchers non-immediate.
18
18
  - Persist user-selected filters and screen context in the URL when they must survive navigation.
19
19
  - Test stateful screens by navigating away and back with a warm query cache, including browser back/forward navigation.
20
+
21
+ ## Adoption
22
+
23
+ - Identify the real client entrypoint, router, build tool, development command,
24
+ production build output, API proxy/origin contract, and environment-file
25
+ conventions.
26
+ - Record existing unit and browser-test commands plus their base-URL, storage
27
+ state, and managed-browser assumptions. Do not install a browser or replace a
28
+ working host-managed browser contract during adoption.