core-nails 1.0.7 → 1.0.9

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.
@@ -35,7 +35,8 @@ export default ${modelName};
35
35
  const schemaFilePath = path.join(dbDir, "schema.ts");
36
36
  const schemaBaseContent = `import FirebaseAdmin from "@lib/FirebaseAdmin";
37
37
  import Nails from "core-nails";
38
- import { z } from "zod";`;
38
+ import { z } from "zod";
39
+ `;
39
40
  // Ensure schema file exists
40
41
  if (!fs.existsSync(schemaFilePath)) {
41
42
  fs.writeFileSync(schemaFilePath, schemaBaseContent);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-nails",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -45,7 +45,8 @@ export default ${modelName};
45
45
 
46
46
  const schemaBaseContent = `import FirebaseAdmin from "@lib/FirebaseAdmin";
47
47
  import Nails from "core-nails";
48
- import { z } from "zod";`;
48
+ import { z } from "zod";
49
+ `;
49
50
 
50
51
  // Ensure schema file exists
51
52
  if (!fs.existsSync(schemaFilePath)) {