feature/research-di #1
@ -8,7 +8,7 @@
|
||||
"start": "next start --port 4000",
|
||||
"lint": "next lint",
|
||||
"test": "vitest",
|
||||
"seed": "node -r dotenv/config ./src/bootstrap/db/seed.js"
|
||||
"seed": "node -r dotenv/config ./src/bootstrap/boundaries/db/seed.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@heroicons/react": "^2.1.5",
|
||||
|
@ -3,7 +3,7 @@
|
||||
import { z } from 'zod';
|
||||
import { revalidatePath } from 'next/cache';
|
||||
import { redirect } from 'next/navigation';
|
||||
import { sql } from '@/bootstrap/db/db';
|
||||
import { sql } from '@/bootstrap/boundaries/db/db';
|
||||
|
||||
const FormSchema = z.object({
|
||||
id: z.string(),
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { sql } from "@/bootstrap/db/db";
|
||||
import { sql } from "@/bootstrap/boundaries/db/db";
|
||||
import { formatCurrency } from "@/feature/common/feature-helpers";
|
||||
import CustomerInvoice from "@/feature/core/customer-invoice/domain/entity/customer-invoice";
|
||||
import CustomerInvoiceRepo from "@/feature/core/customer-invoice/domain/i-repo/customer-invoice-repo";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { sql } from "@/bootstrap/db/db";
|
||||
import { sql } from "@/bootstrap/boundaries/db/db";
|
||||
import { formatCurrency } from "@/feature/common/feature-helpers";
|
||||
import Customer from "@/feature/core/customer/domain/entity/customer";
|
||||
import CustomerRepo from "@/feature/core/customer/domain/i-repo/customer-repo";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { sql } from "@/bootstrap/db/db";
|
||||
import { sql } from "@/bootstrap/boundaries/db/db";
|
||||
import { formatCurrency } from "@/feature/common/feature-helpers";
|
||||
import InvoiceRepo from "@/feature/core/invoice/domain/i-repo/invoice-repo";
|
||||
import { InvoiceParam } from "@/feature/core/invoice/domain/param/invoice-param";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { sql } from "@/bootstrap/db/db";
|
||||
import { sql } from "@/bootstrap/boundaries/db/db";
|
||||
import Revenue from "@/feature/core/revenue/domain/entity/revenue";
|
||||
import RevenueRepo from "@/feature/core/revenue/domain/i-repo/revenue-repo";
|
||||
import { connection } from "next/server";
|
||||
|
@ -25,6 +25,6 @@
|
||||
"@/*": ["./src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "src/bootstrap/db/seed.js", "src/bootstrap/db/placeholder-data.js"],
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "src/bootstrap/boundaries/db/seed.js", "src/bootstrap/boundaries/db/placeholder-data.js"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user