@reliverse/dler 1.7.108 → 1.7.109

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.
@@ -1,5 +1,5 @@
1
1
  export declare const PROJECT_ROOT: string;
2
- export declare const cliVersion = "1.7.108";
2
+ export declare const cliVersion = "1.7.109";
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.108";
4
+ const version = "1.7.109";
5
5
  export const cliVersion = version;
6
6
  export const cliName = "@reliverse/rse";
7
7
  export const rseName = "@reliverse/rse";
@@ -1,16 +1,16 @@
1
1
  import { z } from "zod";
2
2
  export declare const DatabaseSchema: z.ZodEnum<{
3
+ sqlite: "sqlite";
3
4
  none: "none";
4
5
  mysql: "mysql";
5
- sqlite: "sqlite";
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
- drizzle: "drizzle";
13
12
  mongoose: "mongoose";
13
+ drizzle: "drizzle";
14
14
  prisma: "prisma";
15
15
  }>;
16
16
  export type ORM = z.infer<typeof ORMSchema>;
@@ -18,16 +18,16 @@ export declare const BackendSchema: z.ZodEnum<{
18
18
  none: "none";
19
19
  hono: "hono";
20
20
  next: "next";
21
- convex: "convex";
22
- elysia: "elysia";
23
21
  express: "express";
24
22
  fastify: "fastify";
23
+ elysia: "elysia";
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";
28
29
  none: "none";
29
30
  node: "node";
30
- bun: "bun";
31
31
  workers: "workers";
32
32
  }>;
33
33
  export type Runtime = z.infer<typeof RuntimeSchema>;
@@ -39,9 +39,9 @@ export declare const FrontendSchema: z.ZodEnum<{
39
39
  next: "next";
40
40
  "react-router": "react-router";
41
41
  "tanstack-router": "tanstack-router";
42
- "tanstack-start": "tanstack-start";
43
42
  "native-nativewind": "native-nativewind";
44
43
  "native-unistyles": "native-unistyles";
44
+ "tanstack-start": "tanstack-start";
45
45
  }>;
46
46
  export type Frontend = z.infer<typeof FrontendSchema>;
47
47
  export declare const AddonsSchema: z.ZodEnum<{
@@ -50,8 +50,8 @@ export declare const AddonsSchema: z.ZodEnum<{
50
50
  tauri: "tauri";
51
51
  starlight: "starlight";
52
52
  turborepo: "turborepo";
53
- pwa: "pwa";
54
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<{
package/bin/dler.js CHANGED
@@ -21,7 +21,7 @@ const MENU_CMDS = ["agg", "build", "pub", "update"];
21
21
  const main = defineCommand({
22
22
  meta: {
23
23
  name: "dler",
24
- version: "1.7.108",
24
+ version: "1.7.109",
25
25
  description: `Displays dler's command menu.
26
26
  To see ALL available commands and arguments, run: 'dler --help' (or 'dler <command> --help')
27
27
  Available menu commands: ${MENU_CMDS.join(", ")}`
package/package.json CHANGED
@@ -15,8 +15,8 @@
15
15
  "@reliverse/reglob": "^1.0.0",
16
16
  "@reliverse/relico": "^1.3.7",
17
17
  "@reliverse/relifso": "^1.4.5",
18
- "@reliverse/relinka": "^1.5.8",
19
- "@reliverse/rempts": "^1.7.52",
18
+ "@reliverse/relinka": "^1.5.9",
19
+ "@reliverse/rempts": "^1.7.53",
20
20
  "@reliverse/runtime": "^1.0.3",
21
21
  "@rollup/plugin-alias": "^5.1.1",
22
22
  "@rollup/plugin-commonjs": "^28.0.6",
@@ -110,7 +110,7 @@
110
110
  "license": "MIT",
111
111
  "name": "@reliverse/dler",
112
112
  "type": "module",
113
- "version": "1.7.108",
113
+ "version": "1.7.109",
114
114
  "keywords": [
115
115
  "reliverse",
116
116
  "cli",