@alevnyacow/nzmt 0.40.0 → 0.40.2

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/bin/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  Scaffold full-stack modules in Next.js in seconds with **Next Zod Modules Toolkit (NZMT)**.
12
12
 
13
- Get a DDD-inspired architecture with a contract-first approach out of the box.
13
+ Get a domain-focused architecture with a contract-first approach out of the box.
14
14
 
15
15
  Batteries included! ✨
16
16
 
package/bin/cli.js CHANGED
@@ -766,7 +766,7 @@ function generateStores(lowerCase, upperCase, withEntityPreset) {
766
766
  insertAfterLineInFile(
767
767
  diEntriesPath,
768
768
  '// Stores',
769
- prismaPath ? `\t${upperCase}Store: { test: [${upperCase}RAMStore, (x) => x.inSingletonScope()], prod: ${upperCase}PrismaStore, dev: ${upperCase}PrismaStore },` : `\t${upperCase}Store: ${upperCase}RAMStore,`,
769
+ prismaPath ? `\t${upperCase}Store: { test: [${upperCase}RAMStore, (x) => x.inSingletonScope()], prod: ${upperCase}PrismaStore, dev: ${upperCase}PrismaStore },` : `\t${upperCase}Store: { test: [${upperCase}RAMStore, (x) => x.inSingletonScope()], prod: ${upperCase}RAMStore, dev: ${upperCase}RAMStore },`,
770
770
  )
771
771
 
772
772
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alevnyacow/nzmt",
3
- "version": "0.40.0",
3
+ "version": "0.40.2",
4
4
  "description": "Next Zod Modules Toolkit",
5
5
  "keywords": ["next", "full-stack", "server", "backend", "cli", "scaffolding", "zod", "rest", "contract programming", "contract-first", "react-query", "ddd", "domain-driven"],
6
6
  "repository": {