@reliverse/dler 1.7.102 → 1.7.103
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.
- package/bin/app/config/constants.d.ts +1 -1
- package/bin/app/config/constants.js +1 -1
- package/bin/app/db/messages.d.ts +1 -1
- package/bin/app/providers/better-t-stack/types.d.ts +9 -9
- package/bin/app/providers/better-t-stack/utils/display-config.d.ts +1 -1
- package/bin/app/utils/badgeNotifiers.d.ts +2 -2
- package/bin/app/utils/projectRepository.d.ts +7 -7
- package/bin/dler.js +1 -1
- package/package.json +4 -4
|
@@ -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.103";
|
|
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.103";
|
|
5
5
|
export const cliVersion = version;
|
|
6
6
|
export const cliName = "@reliverse/rse";
|
|
7
7
|
export const rseName = "@reliverse/rse";
|
package/bin/app/db/messages.d.ts
CHANGED
|
@@ -8,6 +8,6 @@ export declare const randomWebsiteDetailsTitle: string[];
|
|
|
8
8
|
export declare const randomAdContent: string[];
|
|
9
9
|
export declare const getRandomAd: () => string;
|
|
10
10
|
export declare const ad: string;
|
|
11
|
-
export declare const premium:
|
|
11
|
+
export declare const premium: string;
|
|
12
12
|
export declare function getWelcomeTitle(username: string): string;
|
|
13
13
|
export declare function getRandomMessage(kind: "welcome" | "initial" | "category" | "subcategory" | "details"): string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const DatabaseSchema: z.ZodEnum<{
|
|
3
3
|
none: "none";
|
|
4
|
-
mysql: "mysql";
|
|
5
4
|
sqlite: "sqlite";
|
|
5
|
+
mysql: "mysql";
|
|
6
6
|
mongodb: "mongodb";
|
|
7
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
|
-
mongoose: "mongoose";
|
|
13
12
|
drizzle: "drizzle";
|
|
13
|
+
mongoose: "mongoose";
|
|
14
14
|
prisma: "prisma";
|
|
15
15
|
}>;
|
|
16
16
|
export type ORM = z.infer<typeof ORMSchema>;
|
|
@@ -34,21 +34,21 @@ 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";
|
|
39
|
+
"react-router": "react-router";
|
|
37
40
|
next: "next";
|
|
38
41
|
"tanstack-router": "tanstack-router";
|
|
39
|
-
"react-router": "react-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
|
-
none: "none";
|
|
49
48
|
biome: "biome";
|
|
50
|
-
|
|
49
|
+
none: "none";
|
|
51
50
|
tauri: "tauri";
|
|
51
|
+
starlight: "starlight";
|
|
52
52
|
turborepo: "turborepo";
|
|
53
53
|
pwa: "pwa";
|
|
54
54
|
husky: "husky";
|
|
@@ -62,14 +62,14 @@ export declare const ExamplesSchema: z.ZodEnum<{
|
|
|
62
62
|
export type Examples = z.infer<typeof ExamplesSchema>;
|
|
63
63
|
export declare const PackageManagerSchema: z.ZodEnum<{
|
|
64
64
|
npm: "npm";
|
|
65
|
-
pnpm: "pnpm";
|
|
66
65
|
bun: "bun";
|
|
66
|
+
pnpm: "pnpm";
|
|
67
67
|
}>;
|
|
68
68
|
export type PackageManager = z.infer<typeof PackageManagerSchema>;
|
|
69
69
|
export declare const DatabaseSetupSchema: z.ZodEnum<{
|
|
70
70
|
none: "none";
|
|
71
|
-
neon: "neon";
|
|
72
71
|
supabase: "supabase";
|
|
72
|
+
neon: "neon";
|
|
73
73
|
turso: "turso";
|
|
74
74
|
"prisma-postgres": "prisma-postgres";
|
|
75
75
|
"mongodb-atlas": "mongodb-atlas";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { ProjectConfig } from "../types.js";
|
|
2
|
-
export declare function displayConfig(config: Partial<ProjectConfig>):
|
|
2
|
+
export declare function displayConfig(config: Partial<ProjectConfig>): string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const recommended:
|
|
2
|
-
export declare const experimental:
|
|
1
|
+
export declare const recommended: string;
|
|
2
|
+
export declare const experimental: string;
|
|
@@ -18,42 +18,42 @@ export declare const TEMP_FULLSTACK_WEBSITE_TEMPLATE_OPTIONS: {
|
|
|
18
18
|
readonly "blefnk/relivator-nextjs-template": {
|
|
19
19
|
readonly label: `Relivator ${any}`;
|
|
20
20
|
readonly value: "blefnk/relivator-nextjs-template";
|
|
21
|
-
readonly hint:
|
|
21
|
+
readonly hint: string;
|
|
22
22
|
};
|
|
23
23
|
readonly "blefnk/versator-nextjs-template": {
|
|
24
24
|
readonly label: `Versator ${any}`;
|
|
25
25
|
readonly value: "blefnk/versator-nextjs-template";
|
|
26
|
-
readonly hint:
|
|
26
|
+
readonly hint: string;
|
|
27
27
|
};
|
|
28
28
|
readonly "blefnk/next-react-ts-src-minimal": {
|
|
29
29
|
readonly label: `Next.js Only ${any}`;
|
|
30
30
|
readonly value: "blefnk/next-react-ts-src-minimal";
|
|
31
|
-
readonly hint:
|
|
31
|
+
readonly hint: string;
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
34
|
export declare const TEMP_SEPARATED_WEBSITE_TEMPLATE_OPTIONS: {
|
|
35
35
|
"blefnk/relivator-docker-repo": {
|
|
36
36
|
label: string;
|
|
37
37
|
value: string;
|
|
38
|
-
hint:
|
|
38
|
+
hint: string;
|
|
39
39
|
};
|
|
40
40
|
};
|
|
41
41
|
export declare const TEMP_VSCODE_TEMPLATE_OPTIONS: {
|
|
42
42
|
readonly "microsoft/vscode-extension-samples": {
|
|
43
43
|
readonly label: "VS Code Extension Sample";
|
|
44
44
|
readonly value: "microsoft/vscode-extension-samples";
|
|
45
|
-
readonly hint:
|
|
45
|
+
readonly hint: string;
|
|
46
46
|
};
|
|
47
47
|
readonly "microsoft/vscode-extension-template": {
|
|
48
48
|
readonly label: "VS Code Extension Template";
|
|
49
49
|
readonly value: "microsoft/vscode-extension-template";
|
|
50
|
-
readonly hint:
|
|
50
|
+
readonly hint: string;
|
|
51
51
|
};
|
|
52
52
|
};
|
|
53
53
|
export declare const TEMP_BROWSER_TEMPLATE_OPTIONS: {
|
|
54
54
|
"rsebrowser-extension": {
|
|
55
55
|
label: string;
|
|
56
56
|
value: string;
|
|
57
|
-
hint:
|
|
57
|
+
hint: string;
|
|
58
58
|
};
|
|
59
59
|
};
|
package/bin/dler.js
CHANGED
|
@@ -22,7 +22,7 @@ let isDev = process.env.DLER_DEV_MODE === "true";
|
|
|
22
22
|
const main = defineCommand({
|
|
23
23
|
meta: {
|
|
24
24
|
name: "dler",
|
|
25
|
-
version: "1.7.
|
|
25
|
+
version: "1.7.103",
|
|
26
26
|
description: `Displays dler's command menu.
|
|
27
27
|
To see ALL available commands and arguments, run: 'dler --help' (or 'dler <command> --help')
|
|
28
28
|
Available menu commands: ${MENU_CMDS.join(", ")}`
|
package/package.json
CHANGED
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
"@radix-ui/react-label": "^2.1.7",
|
|
11
11
|
"@radix-ui/react-select": "^2.2.6",
|
|
12
12
|
"@radix-ui/react-slot": "^1.2.3",
|
|
13
|
-
"@reliverse/bleump": "^1.1.
|
|
13
|
+
"@reliverse/bleump": "^1.1.6",
|
|
14
14
|
"@reliverse/pathkit": "^1.3.4",
|
|
15
15
|
"@reliverse/reglob": "^1.0.0",
|
|
16
|
-
"@reliverse/relico": "^1.3.
|
|
16
|
+
"@reliverse/relico": "^1.3.6",
|
|
17
17
|
"@reliverse/relifso": "^1.4.5",
|
|
18
|
-
"@reliverse/relinka": "^1.5.
|
|
18
|
+
"@reliverse/relinka": "^1.5.8",
|
|
19
19
|
"@reliverse/rempts": "^1.7.52",
|
|
20
20
|
"@reliverse/runtime": "^1.0.3",
|
|
21
21
|
"@rollup/plugin-alias": "^5.1.1",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"license": "MIT",
|
|
111
111
|
"name": "@reliverse/dler",
|
|
112
112
|
"type": "module",
|
|
113
|
-
"version": "1.7.
|
|
113
|
+
"version": "1.7.103",
|
|
114
114
|
"keywords": [
|
|
115
115
|
"reliverse",
|
|
116
116
|
"cli",
|