@reliverse/dler 1.7.136 → 1.7.137
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.
|
@@ -146,10 +146,10 @@ export declare const optionsSchema: z.ZodObject<{
|
|
|
146
146
|
cwd: z.ZodString;
|
|
147
147
|
config: z.ZodOptional<z.ZodString>;
|
|
148
148
|
database: z.ZodOptional<z.ZodEnum<{
|
|
149
|
-
sqlite: "sqlite";
|
|
150
|
-
postgres: "postgres";
|
|
151
149
|
mysql: "mysql";
|
|
150
|
+
sqlite: "sqlite";
|
|
152
151
|
mongodb: "mongodb";
|
|
152
|
+
postgres: "postgres";
|
|
153
153
|
mssql: "mssql";
|
|
154
154
|
"drizzle:pg": "drizzle:pg";
|
|
155
155
|
"drizzle:mysql": "drizzle:mysql";
|
|
@@ -165,7 +165,7 @@ export declare const optionsSchema: z.ZodObject<{
|
|
|
165
165
|
}, z.core.$strip>;
|
|
166
166
|
export declare const outroText = "\uD83E\uDD73 All Done, Happy Hacking!";
|
|
167
167
|
export declare function getLatestNpmVersion(packageName: string): Promise<string>;
|
|
168
|
-
export declare function getPackageManager(): Promise<"npm" | "bun" | "
|
|
168
|
+
export declare function getPackageManager(): Promise<"npm" | "bun" | "pnpm" | "yarn">;
|
|
169
169
|
export declare function getEnvFiles(cwd: string): Promise<string[]>;
|
|
170
170
|
export declare function updateEnvs({ envs, files, isCommented, }: {
|
|
171
171
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const PROJECT_ROOT: string;
|
|
2
|
-
export declare const cliVersion = "1.7.
|
|
2
|
+
export declare const cliVersion = "1.7.137";
|
|
3
3
|
export declare const cliName = "@reliverse/rse";
|
|
4
4
|
export declare const rseName = "@reliverse/rse";
|
|
5
5
|
export declare const dlerName = "@reliverse/dler";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import os from "node:os";
|
|
2
2
|
import path from "@reliverse/pathkit";
|
|
3
3
|
export const PROJECT_ROOT = path.resolve(process.cwd());
|
|
4
|
-
const version = "1.7.
|
|
4
|
+
const version = "1.7.137";
|
|
5
5
|
export const cliVersion = version;
|
|
6
6
|
export const cliName = "@reliverse/rse";
|
|
7
7
|
export const rseName = "@reliverse/rse";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const DatabaseSchema: z.ZodEnum<{
|
|
3
|
-
sqlite: "sqlite";
|
|
4
3
|
none: "none";
|
|
5
|
-
postgres: "postgres";
|
|
6
4
|
mysql: "mysql";
|
|
5
|
+
sqlite: "sqlite";
|
|
7
6
|
mongodb: "mongodb";
|
|
7
|
+
postgres: "postgres";
|
|
8
8
|
}>;
|
|
9
9
|
export type Database = z.infer<typeof DatabaseSchema>;
|
|
10
10
|
export declare const ORMSchema: z.ZodEnum<{
|
|
@@ -17,47 +17,47 @@ export type ORM = z.infer<typeof ORMSchema>;
|
|
|
17
17
|
export declare const BackendSchema: z.ZodEnum<{
|
|
18
18
|
none: "none";
|
|
19
19
|
hono: "hono";
|
|
20
|
+
next: "next";
|
|
20
21
|
express: "express";
|
|
21
22
|
fastify: "fastify";
|
|
22
|
-
next: "next";
|
|
23
23
|
elysia: "elysia";
|
|
24
24
|
convex: "convex";
|
|
25
25
|
}>;
|
|
26
26
|
export type Backend = z.infer<typeof BackendSchema>;
|
|
27
27
|
export declare const RuntimeSchema: z.ZodEnum<{
|
|
28
28
|
bun: "bun";
|
|
29
|
-
none: "none";
|
|
30
29
|
node: "node";
|
|
30
|
+
none: "none";
|
|
31
31
|
workers: "workers";
|
|
32
32
|
}>;
|
|
33
33
|
export type Runtime = z.infer<typeof RuntimeSchema>;
|
|
34
34
|
export declare const FrontendSchema: z.ZodEnum<{
|
|
35
35
|
none: "none";
|
|
36
36
|
svelte: "svelte";
|
|
37
|
+
nuxt: "nuxt";
|
|
38
|
+
solid: "solid";
|
|
37
39
|
next: "next";
|
|
38
|
-
"tanstack-router": "tanstack-router";
|
|
39
40
|
"react-router": "react-router";
|
|
41
|
+
"tanstack-router": "tanstack-router";
|
|
40
42
|
"tanstack-start": "tanstack-start";
|
|
41
|
-
nuxt: "nuxt";
|
|
42
43
|
"native-nativewind": "native-nativewind";
|
|
43
44
|
"native-unistyles": "native-unistyles";
|
|
44
|
-
solid: "solid";
|
|
45
45
|
}>;
|
|
46
46
|
export type Frontend = z.infer<typeof FrontendSchema>;
|
|
47
47
|
export declare const AddonsSchema: z.ZodEnum<{
|
|
48
|
-
biome: "biome";
|
|
49
48
|
none: "none";
|
|
50
|
-
pwa: "pwa";
|
|
51
49
|
tauri: "tauri";
|
|
50
|
+
biome: "biome";
|
|
52
51
|
starlight: "starlight";
|
|
53
|
-
husky: "husky";
|
|
54
52
|
turborepo: "turborepo";
|
|
53
|
+
husky: "husky";
|
|
54
|
+
pwa: "pwa";
|
|
55
55
|
}>;
|
|
56
56
|
export type Addons = z.infer<typeof AddonsSchema>;
|
|
57
57
|
export declare const ExamplesSchema: z.ZodEnum<{
|
|
58
58
|
none: "none";
|
|
59
|
-
todo: "todo";
|
|
60
59
|
ai: "ai";
|
|
60
|
+
todo: "todo";
|
|
61
61
|
}>;
|
|
62
62
|
export type Examples = z.infer<typeof ExamplesSchema>;
|
|
63
63
|
export declare const PackageManagerSchema: z.ZodEnum<{
|
|
@@ -68,11 +68,11 @@ export declare const PackageManagerSchema: z.ZodEnum<{
|
|
|
68
68
|
export type PackageManager = z.infer<typeof PackageManagerSchema>;
|
|
69
69
|
export declare const DatabaseSetupSchema: z.ZodEnum<{
|
|
70
70
|
none: "none";
|
|
71
|
-
|
|
71
|
+
supabase: "supabase";
|
|
72
72
|
neon: "neon";
|
|
73
|
+
turso: "turso";
|
|
73
74
|
"prisma-postgres": "prisma-postgres";
|
|
74
75
|
"mongodb-atlas": "mongodb-atlas";
|
|
75
|
-
supabase: "supabase";
|
|
76
76
|
}>;
|
|
77
77
|
export type DatabaseSetup = z.infer<typeof DatabaseSetupSchema>;
|
|
78
78
|
export declare const APISchema: z.ZodEnum<{
|