@reliverse/rse
Version:
@reliverse/rse is your all-in-one companion for bootstrapping and improving any kind of projects (especially web apps built with frameworks like Next.js) — whether you're kicking off something new or upgrading an existing app. It is also a little AI-power
36 lines (35 loc) • 1.19 kB
JavaScript
import { DLER_TPL_ADDONS } from "./packed/addons.js";
import { DLER_TPL_API } from "./packed/api.js";
import { DLER_TPL_AUTH } from "./packed/auth.js";
import { DLER_TPL_BACKEND } from "./packed/backend.js";
import { DLER_TPL_BASE } from "./packed/base.js";
import { DLER_TPL_DB } from "./packed/db.js";
import { DLER_TPL_EXAMPLES } from "./packed/examples.js";
import { DLER_TPL_EXTRAS } from "./packed/extras.js";
import { DLER_TPL_FRONTEND } from "./packed/frontend.js";
import { DLER_TPL_RUNTIME } from "./packed/runtime.js";
const DLER_TEMPLATES_OBJ = {
addons: DLER_TPL_ADDONS,
api: DLER_TPL_API,
auth: DLER_TPL_AUTH,
backend: DLER_TPL_BACKEND,
base: DLER_TPL_BASE,
db: DLER_TPL_DB,
examples: DLER_TPL_EXAMPLES,
extras: DLER_TPL_EXTRAS,
frontend: DLER_TPL_FRONTEND,
runtime: DLER_TPL_RUNTIME
};
export const DLER_TEMPLATES = DLER_TEMPLATES_OBJ;
export const dlerTemplatesMap = {
DLER_TPL_ADDONS: "addons",
DLER_TPL_API: "api",
DLER_TPL_AUTH: "auth",
DLER_TPL_BACKEND: "backend",
DLER_TPL_BASE: "base",
DLER_TPL_DB: "db",
DLER_TPL_EXAMPLES: "examples",
DLER_TPL_EXTRAS: "extras",
DLER_TPL_FRONTEND: "frontend",
DLER_TPL_RUNTIME: "runtime"
};