@reliverse/dler 1.7.47 → 1.7.49

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.
@@ -105,7 +105,7 @@ export default defineCommand({
105
105
  try {
106
106
  await fs.access(path.join(outDir, typesFile));
107
107
  } catch {
108
- const typesContent = `export interface FileContent extends string | Record<string, unknown> {}
108
+ const typesContent = `export type FileContent = string | Record<string, unknown>;
109
109
  export interface FileMetadata {
110
110
  updatedAt?: string;
111
111
  updatedHash?: string;
@@ -249,7 +249,7 @@ export interface Templates extends Record<string, Template> {}
249
249
  ).split("\n").map((line, i) => {
250
250
  if (i === 0) return line;
251
251
  return " " + line.replace(/"([a-zA-Z0-9_]+)":/g, "$1:");
252
- }).join("\n").replace(/},?\s*$/, "},");
252
+ }).join("\n").replace(/},?\s*$/, "},").replace(/,\s*,/g, ",");
253
253
  code.push(` content: ${jsonStr}${sat},`);
254
254
  code.push(' type: "json",');
255
255
  }
@@ -14,7 +14,7 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
14
14
  projectState?: "created" | "creating" | undefined;
15
15
  projectCategory?: "browser" | "cli" | "unknown" | "website" | "vscode" | "library" | "mobile" | undefined;
16
16
  projectSubcategory?: "unknown" | "e-commerce" | "tool" | undefined;
17
- projectFramework?: "rempts" | "npm-jsr" | "unknown" | "vscode" | "nextjs" | "vite" | "svelte" | "remix" | "astro" | "nuxt" | "solid" | "qwik" | "vue" | "wxt" | "lynx" | "react-native" | "expo" | "capacitor" | "ionic" | "electron" | "tauri" | "neutralino" | "citty" | "commander" | "cac" | "meow" | "yargs" | "webextension" | "browser-extension" | undefined;
17
+ projectFramework?: "rempts" | "npm-jsr" | "vue" | "unknown" | "vscode" | "nextjs" | "vite" | "svelte" | "remix" | "astro" | "nuxt" | "solid" | "qwik" | "wxt" | "lynx" | "react-native" | "expo" | "capacitor" | "ionic" | "electron" | "tauri" | "neutralino" | "citty" | "commander" | "cac" | "meow" | "yargs" | "webextension" | "browser-extension" | undefined;
18
18
  projectTemplate?: "unknown" | "blefnk/relivator-nextjs-template" | "blefnk/relivator-docker-template" | "blefnk/next-react-ts-src-minimal" | "blefnk/all-in-one-nextjs-template" | "blefnk/create-t3-app" | "blefnk/create-next-app" | "blefnk/astro-starlight-template" | "blefnk/versator-nextjs-template" | "blefnk/relivator-lynxjs-template" | "blefnk/relivator-react-native-template" | "reliverse/template-browser-extension" | "microsoft/vscode-extension-samples" | "microsoft/vscode-extension-template" | "rsetarter-template" | "blefnk/deno-cli-tutorial" | undefined;
19
19
  projectTemplateDate?: string | undefined;
20
20
  features?: {
@@ -33,6 +33,8 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
33
33
  themes?: string[] | undefined;
34
34
  } | undefined;
35
35
  preferredLibraries?: {
36
+ search?: "unknown" | "algolia" | undefined;
37
+ cdn?: "unknown" | "cloudflare" | undefined;
36
38
  i18n?: "unknown" | "next-intl" | undefined;
37
39
  analytics?: "unknown" | "vercel" | undefined;
38
40
  authentication?: "unknown" | "better-auth" | "clerk" | "next-auth" | "supabase-auth" | "auth0" | undefined;
@@ -40,7 +42,7 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
40
42
  testing?: "bun" | "unknown" | "vitest" | "jest" | "playwright" | "cypress" | undefined;
41
43
  stateManagement?: "unknown" | "zustand" | "jotai" | "redux-toolkit" | undefined;
42
44
  formManagement?: "unknown" | "react-hook-form" | "formik" | undefined;
43
- styling?: "unknown" | "tailwind" | "styled-components" | "css-modules" | "sass" | undefined;
45
+ styling?: "sass" | "unknown" | "tailwind" | "styled-components" | "css-modules" | undefined;
44
46
  uiComponents?: "unknown" | "shadcn-ui" | "chakra-ui" | "material-ui" | undefined;
45
47
  databaseLibrary?: "unknown" | "drizzle" | "prisma" | "supabase" | undefined;
46
48
  databaseProvider?: "unknown" | "pg" | "mysql" | "sqlite" | "mongodb" | undefined;
@@ -51,7 +53,6 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
51
53
  logging?: "unknown" | "axiom" | undefined;
52
54
  forms?: "unknown" | "react-hook-form" | undefined;
53
55
  notifications?: "unknown" | "sonner" | undefined;
54
- search?: "unknown" | "algolia" | undefined;
55
56
  uploads?: "unknown" | "uploadthing" | undefined;
56
57
  validation?: "unknown" | "zod" | "typebox" | "valibot" | undefined;
57
58
  documentation?: "unknown" | "starlight" | "nextra" | undefined;
@@ -59,7 +60,6 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
59
60
  mail?: "unknown" | "resend" | undefined;
60
61
  cache?: "unknown" | "redis" | undefined;
61
62
  storage?: "unknown" | "cloudflare" | undefined;
62
- cdn?: "unknown" | "cloudflare" | undefined;
63
63
  cms?: "unknown" | "contentlayer" | undefined;
64
64
  seo?: "unknown" | "next-seo" | undefined;
65
65
  motion?: "unknown" | "framer" | undefined;
@@ -1,5 +1,5 @@
1
1
  import { endPrompt, startPrompt } from "@reliverse/rempts";
2
- const version = "1.7.47";
2
+ const version = "1.7.49";
3
3
  export async function showStartPrompt(isDev) {
4
4
  await startPrompt({
5
5
  titleColor: "inverse",
package/package.json CHANGED
@@ -53,7 +53,7 @@
53
53
  "license": "MIT",
54
54
  "name": "@reliverse/dler",
55
55
  "type": "module",
56
- "version": "1.7.47",
56
+ "version": "1.7.49",
57
57
  "keywords": [
58
58
  "reliverse",
59
59
  "cli",