@reliverse/dler 1.7.113 → 1.7.114
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/config/default.js +1 -1
- package/bin/app/config/reltypes-content.js +1 -1
- package/bin/app/providers/better-t-stack/types.d.ts +6 -6
- package/bin/app/utils/schemaMemory.d.ts +1 -1
- package/bin/dler.js +1 -1
- package/package.json +3 -1
|
@@ -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.114";
|
|
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.114";
|
|
5
5
|
export const cliVersion = version;
|
|
6
6
|
export const cliName = "@reliverse/rse";
|
|
7
7
|
export const rseName = "@reliverse/rse";
|
|
@@ -32,7 +32,7 @@ export const DEFAULT_CONFIG_DLER = {
|
|
|
32
32
|
logsFreshFile: true,
|
|
33
33
|
// Dependency filtering
|
|
34
34
|
filterDepsPatterns: {
|
|
35
|
-
global: ["@types", "biome", "eslint", "knip", "prettier", "
|
|
35
|
+
global: ["@types", "biome", "eslint", "knip", "prettier", "@reliverse/rse"],
|
|
36
36
|
"dist-npm": [],
|
|
37
37
|
"dist-jsr": [],
|
|
38
38
|
"dist-libs": {}
|
|
@@ -999,7 +999,7 @@ export const DEFAULT_CONFIG_RELIVERSE: ReliverseConfig = {
|
|
|
999
999
|
logsFreshFile: true,
|
|
1000
1000
|
// Dependency filtering
|
|
1001
1001
|
filterDepsPatterns: {
|
|
1002
|
-
global: ["@types", "biome", "eslint", "knip", "prettier", "
|
|
1002
|
+
global: ["@types", "biome", "eslint", "knip", "prettier", "@reliverse/rse"],
|
|
1003
1003
|
"dist-npm": [],
|
|
1004
1004
|
"dist-jsr": [],
|
|
1005
1005
|
"dist-libs": {},
|
|
@@ -2,9 +2,9 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const DatabaseSchema: z.ZodEnum<{
|
|
3
3
|
none: "none";
|
|
4
4
|
sqlite: "sqlite";
|
|
5
|
-
postgres: "postgres";
|
|
6
5
|
mysql: "mysql";
|
|
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,9 +17,9 @@ 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
|
}>;
|
|
@@ -37,8 +37,8 @@ export declare const FrontendSchema: z.ZodEnum<{
|
|
|
37
37
|
nuxt: "nuxt";
|
|
38
38
|
solid: "solid";
|
|
39
39
|
next: "next";
|
|
40
|
-
"tanstack-router": "tanstack-router";
|
|
41
40
|
"react-router": "react-router";
|
|
41
|
+
"tanstack-router": "tanstack-router";
|
|
42
42
|
"tanstack-start": "tanstack-start";
|
|
43
43
|
"native-nativewind": "native-nativewind";
|
|
44
44
|
"native-unistyles": "native-unistyles";
|
|
@@ -46,11 +46,11 @@ export declare const FrontendSchema: z.ZodEnum<{
|
|
|
46
46
|
export type Frontend = z.infer<typeof FrontendSchema>;
|
|
47
47
|
export declare const AddonsSchema: z.ZodEnum<{
|
|
48
48
|
none: "none";
|
|
49
|
+
tauri: "tauri";
|
|
49
50
|
biome: "biome";
|
|
50
51
|
turborepo: "turborepo";
|
|
51
|
-
tauri: "tauri";
|
|
52
|
-
pwa: "pwa";
|
|
53
52
|
starlight: "starlight";
|
|
53
|
+
pwa: "pwa";
|
|
54
54
|
husky: "husky";
|
|
55
55
|
}>;
|
|
56
56
|
export type Addons = z.infer<typeof AddonsSchema>;
|
|
@@ -68,8 +68,8 @@ 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
|
-
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";
|
|
@@ -20,8 +20,8 @@ export declare const memorySchema: import("@sinclair/typebox").TObject<{
|
|
|
20
20
|
vercelKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
21
21
|
openaiKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
22
22
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
23
|
-
email: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
24
23
|
githubUsername: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
24
|
+
email: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
25
25
|
vercelTeamId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
26
26
|
vercelTeamSlug: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
27
27
|
}>;
|
package/bin/dler.js
CHANGED
|
@@ -20,7 +20,7 @@ const MENU_CMDS = ["agg", "build", "pub", "update"];
|
|
|
20
20
|
const main = defineCommand({
|
|
21
21
|
meta: {
|
|
22
22
|
name: "dler",
|
|
23
|
-
version: "1.7.
|
|
23
|
+
version: "1.7.114",
|
|
24
24
|
description: `Displays dler's command menu.
|
|
25
25
|
To see ALL available commands and arguments, run: 'dler --help' (or 'dler <command> --help')
|
|
26
26
|
Available menu commands: ${MENU_CMDS.join(", ")}`
|
package/package.json
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
"dependencies": {
|
|
3
3
|
"@ai-sdk/openai": "^2.0.20",
|
|
4
4
|
"@babel/preset-react": "^7.27.1",
|
|
5
|
+
"@babel/preset-typescript": "^7.27.1",
|
|
5
6
|
"@hookform/resolvers": "^5.2.1",
|
|
6
7
|
"@libsql/client": "^0.15.12",
|
|
7
8
|
"@mendable/firecrawl-js": "^3.2.0",
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
"@sinclair/typebox": "^0.34.40",
|
|
30
31
|
"@uploadcare/upload-client": "^6.17.0",
|
|
31
32
|
"@vercel/sdk": "^1.10.6",
|
|
33
|
+
"@volar/typescript": "^2.4.23",
|
|
32
34
|
"@vue/language-core": "^3.0.6",
|
|
33
35
|
"@vue/language-core2.0": "npm:@vue/language-core@2.0.29",
|
|
34
36
|
"ai": "^5.0.23",
|
|
@@ -122,7 +124,7 @@
|
|
|
122
124
|
"license": "MIT",
|
|
123
125
|
"name": "@reliverse/dler",
|
|
124
126
|
"type": "module",
|
|
125
|
-
"version": "1.7.
|
|
127
|
+
"version": "1.7.114",
|
|
126
128
|
"keywords": [
|
|
127
129
|
"reliverse",
|
|
128
130
|
"cli",
|