UNPKG

@maizzle/framework

Version:

Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.

10 lines (9 loc) 264 B
import { existsSync } from "node:fs"; import { resolve } from "node:path"; //#region src/utils/detect.ts function isLaravel(cwd = process.cwd()) { return existsSync(resolve(cwd, "artisan")); } //#endregion export { isLaravel }; //# sourceMappingURL=detect.js.map