@reliverse/dler 1.7.138 → 1.7.139
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
|
-
postgres: "postgres";
|
|
150
149
|
mysql: "mysql";
|
|
151
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<"
|
|
168
|
+
export declare function getPackageManager(): Promise<"npm" | "pnpm" | "yarn" | "bun">;
|
|
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.139";
|
|
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.139";
|
|
5
5
|
export const cliVersion = version;
|
|
6
6
|
export const cliName = "@reliverse/rse";
|
|
7
7
|
export const rseName = "@reliverse/rse";
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const DatabaseSchema: z.ZodEnum<{
|
|
3
3
|
none: "none";
|
|
4
|
-
postgres: "postgres";
|
|
5
4
|
mysql: "mysql";
|
|
6
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<{
|
|
11
11
|
none: "none";
|
|
12
|
-
prisma: "prisma";
|
|
13
12
|
drizzle: "drizzle";
|
|
13
|
+
prisma: "prisma";
|
|
14
14
|
mongoose: "mongoose";
|
|
15
15
|
}>;
|
|
16
16
|
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
|
-
bun: "bun";
|
|
29
28
|
none: "none";
|
|
29
|
+
bun: "bun";
|
|
30
30
|
node: "node";
|
|
31
31
|
workers: "workers";
|
|
32
32
|
}>;
|
|
@@ -35,44 +35,44 @@ export declare const FrontendSchema: z.ZodEnum<{
|
|
|
35
35
|
none: "none";
|
|
36
36
|
svelte: "svelte";
|
|
37
37
|
nuxt: "nuxt";
|
|
38
|
-
|
|
38
|
+
solid: "solid";
|
|
39
39
|
next: "next";
|
|
40
|
+
"react-router": "react-router";
|
|
40
41
|
"tanstack-router": "tanstack-router";
|
|
41
42
|
"tanstack-start": "tanstack-start";
|
|
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
|
+
pwa: "pwa";
|
|
54
|
+
husky: "husky";
|
|
55
55
|
}>;
|
|
56
56
|
export type Addons = z.infer<typeof AddonsSchema>;
|
|
57
57
|
export declare const ExamplesSchema: z.ZodEnum<{
|
|
58
58
|
none: "none";
|
|
59
|
-
ai: "ai";
|
|
60
59
|
todo: "todo";
|
|
60
|
+
ai: "ai";
|
|
61
61
|
}>;
|
|
62
62
|
export type Examples = z.infer<typeof ExamplesSchema>;
|
|
63
63
|
export declare const PackageManagerSchema: z.ZodEnum<{
|
|
64
|
-
bun: "bun";
|
|
65
64
|
npm: "npm";
|
|
66
65
|
pnpm: "pnpm";
|
|
66
|
+
bun: "bun";
|
|
67
67
|
}>;
|
|
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<{
|
|
@@ -14,7 +14,7 @@ export type BrowserRepoOption = "reliverse/template-browser-extension" | "unknow
|
|
|
14
14
|
export declare function configureBrowserExtension(): Promise<{
|
|
15
15
|
displayName: string;
|
|
16
16
|
description: string;
|
|
17
|
-
features: ("
|
|
17
|
+
features: ("commands" | "webview" | "language" | "themes")[];
|
|
18
18
|
activation: "onCommand" | "onLanguage" | "startup";
|
|
19
19
|
publisher: string;
|
|
20
20
|
}>;
|
|
@@ -24,7 +24,7 @@ export declare function configureBrowserExtension(): Promise<{
|
|
|
24
24
|
export declare function configureVSCodeExtension(): Promise<{
|
|
25
25
|
displayName: string;
|
|
26
26
|
description: string;
|
|
27
|
-
features: ("
|
|
27
|
+
features: ("commands" | "webview" | "language" | "themes")[];
|
|
28
28
|
activation: "onCommand" | "onLanguage" | "startup";
|
|
29
29
|
publisher: string;
|
|
30
30
|
}>;
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@reliverse/relico": "^1.3.9",
|
|
20
20
|
"@reliverse/relifso": "^1.4.5",
|
|
21
21
|
"@reliverse/relinka": "^1.6.1",
|
|
22
|
-
"@reliverse/rempts": "^1.7.
|
|
22
|
+
"@reliverse/rempts": "^1.7.62",
|
|
23
23
|
"@reliverse/runtime": "^1.0.3",
|
|
24
24
|
"@rollup/plugin-alias": "^5.1.1",
|
|
25
25
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"license": "MIT",
|
|
123
123
|
"name": "@reliverse/dler",
|
|
124
124
|
"type": "module",
|
|
125
|
-
"version": "1.7.
|
|
125
|
+
"version": "1.7.139",
|
|
126
126
|
"author": "reliverse",
|
|
127
127
|
"bugs": {
|
|
128
128
|
"email": "blefnk@gmail.com",
|