@reliverse/dler 1.7.112 → 1.7.113

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.112";
2
+ export declare const cliVersion = "1.7.113";
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.112";
4
+ const version = "1.7.113";
5
5
  export const cliVersion = version;
6
6
  export const cliName = "@reliverse/rse";
7
7
  export const rseName = "@reliverse/rse";
@@ -114,9 +114,9 @@ function generateJsoncConfig(isDev, pkgDescription) {
114
114
  pkgDescription || DEFAULT_CONFIG_DLER.coreDescription
115
115
  );
116
116
  const libsActModeValue = getValue(isDev, "main-and-libs", DEFAULT_CONFIG_DLER.libsActMode);
117
- return `// reliverse.jsonc - Reliverse Bundler Configuration
118
- // Hover over a field to see more details
119
- // @see https://github.com/reliverse/reliverse
117
+ return `// @reliverse/* libraries & rse configuration
118
+ // Hover over the fields to learn more details
119
+ // @see https://docs.reliverse.org/libraries
120
120
  // Schema: ${schemaUrl}
121
121
  {
122
122
  "$schema": "${schemaUrl}",
@@ -421,9 +421,9 @@ function generateConfig(isDev, pkgDescription, configKind = "ts") {
421
421
  importdefineConfigStatement,
422
422
  "",
423
423
  "/**",
424
- " * Reliverse Bundler Configuration",
425
- " * Hover over a field to see more details",
426
- " * @see https://github.com/reliverse/reliverse",
424
+ " * @reliverse/* libraries & rse configuration",
425
+ " * Hover over the fields to learn more details",
426
+ " * @see https://docs.reliverse.org/libraries",
427
427
  " */",
428
428
  "export default defineConfig({",
429
429
  " // Project configuration",
@@ -1,33 +1,33 @@
1
1
  import { z } from "zod";
2
2
  export declare const DatabaseSchema: z.ZodEnum<{
3
3
  none: "none";
4
- postgres: "postgres";
5
4
  sqlite: "sqlite";
5
+ postgres: "postgres";
6
6
  mysql: "mysql";
7
7
  mongodb: "mongodb";
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
- mongoose: "mongoose";
14
12
  drizzle: "drizzle";
13
+ mongoose: "mongoose";
14
+ prisma: "prisma";
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";
21
20
  express: "express";
22
21
  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
  none: "none";
29
- node: "node";
30
29
  bun: "bun";
30
+ node: "node";
31
31
  workers: "workers";
32
32
  }>;
33
33
  export type Runtime = z.infer<typeof RuntimeSchema>;
@@ -45,12 +45,12 @@ export declare const FrontendSchema: z.ZodEnum<{
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";
49
+ biome: "biome";
50
50
  turborepo: "turborepo";
51
51
  tauri: "tauri";
52
- starlight: "starlight";
53
52
  pwa: "pwa";
53
+ starlight: "starlight";
54
54
  husky: "husky";
55
55
  }>;
56
56
  export type Addons = z.infer<typeof AddonsSchema>;
@@ -61,16 +61,16 @@ export declare const ExamplesSchema: z.ZodEnum<{
61
61
  }>;
62
62
  export type Examples = z.infer<typeof ExamplesSchema>;
63
63
  export declare const PackageManagerSchema: z.ZodEnum<{
64
- npm: "npm";
65
64
  bun: "bun";
65
+ npm: "npm";
66
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
71
  neon: "neon";
72
- turso: "turso";
73
72
  supabase: "supabase";
73
+ turso: "turso";
74
74
  "prisma-postgres": "prisma-postgres";
75
75
  "mongodb-atlas": "mongodb-atlas";
76
76
  }>;
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.112",
23
+ version: "1.7.113",
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
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "dependencies": {
3
3
  "@ai-sdk/openai": "^2.0.20",
4
+ "@babel/preset-react": "^7.27.1",
4
5
  "@hookform/resolvers": "^5.2.1",
5
6
  "@libsql/client": "^0.15.12",
6
7
  "@mendable/firecrawl-js": "^3.2.0",
8
+ "@mrleebo/prisma-ast": "^0.13.0",
7
9
  "@octokit/plugin-rest-endpoint-methods": "^16.0.0",
8
10
  "@octokit/request-error": "^7.0.0",
9
11
  "@octokit/rest": "^22.0.0",
@@ -27,6 +29,8 @@
27
29
  "@sinclair/typebox": "^0.34.40",
28
30
  "@uploadcare/upload-client": "^6.17.0",
29
31
  "@vercel/sdk": "^1.10.6",
32
+ "@vue/language-core": "^3.0.6",
33
+ "@vue/language-core2.0": "npm:@vue/language-core@2.0.29",
30
34
  "ai": "^5.0.23",
31
35
  "async-listen": "^3.1.0",
32
36
  "autoprefixer": "^10.4.21",
@@ -41,6 +45,7 @@
41
45
  "defu": "^6.1.4",
42
46
  "destr": "^2.0.5",
43
47
  "detect-package-manager": "^3.0.2",
48
+ "drizzle-kit": "^0.31.4",
44
49
  "drizzle-orm": "^0.44.5",
45
50
  "enquirer": "^2.4.1",
46
51
  "esbuild": "^0.25.9",
@@ -62,6 +67,7 @@
62
67
  "magic-string": "^0.30.18",
63
68
  "magicast": "^0.3.5",
64
69
  "mlly": "^1.8.0",
70
+ "mysql2": "^3.14.3",
65
71
  "nanoid": "^5.1.5",
66
72
  "nypm": "^0.6.1",
67
73
  "octokit": "^5.0.3",
@@ -73,35 +79,42 @@
73
79
  "p-map": "^7.0.3",
74
80
  "path-key": "^4.0.0",
75
81
  "pkg-types": "^2.3.0",
76
- "postcss": "^8.5.6",
77
82
  "postcss-nested": "^7.0.2",
83
+ "postcss": "^8.5.6",
84
+ "postgres": "^3.4.7",
78
85
  "posthog-node": "^5.7.0",
79
86
  "pretty-bytes": "^7.0.1",
80
87
  "pretty-ms": "^9.2.0",
81
88
  "querystring": "^0.2.1",
82
89
  "random-words": "^2.0.1",
83
- "react": "^19.1.1",
84
90
  "react-dom": "^19.1.1",
85
91
  "react-hook-form": "^7.62.0",
92
+ "react": "^19.1.1",
86
93
  "registry-auth-token": "^5.1.0",
87
94
  "registry-url": "^7.2.0",
88
- "rollup": "^4.48.1",
89
95
  "rollup-plugin-dts": "^6.2.3",
96
+ "rollup": "^4.48.1",
97
+ "sass": "^1.90.0",
90
98
  "scule": "^1.3.0",
91
99
  "semver": "^7.7.2",
92
100
  "shebang-command": "^2.0.0",
93
101
  "simple-git": "^3.28.0",
94
102
  "strip-json-comments": "^5.0.3",
95
103
  "tailwind-merge": "^3.3.1",
96
- "tailwindcss": "^4.1.12",
97
104
  "tailwindcss-animate": "^1.0.7",
98
- "tar": "^7.4.3",
105
+ "tailwindcss": "^4.1.12",
99
106
  "tar-stream": "^3.1.7",
107
+ "tar": "^7.4.3",
100
108
  "tinyglobby": "^0.2.14",
101
109
  "ts-morph": "^26.0.0",
102
110
  "uncrypto": "^0.1.3",
103
111
  "untyped": "^2.0.0",
104
112
  "uploadthing": "^7.7.4",
113
+ "vue-sfc-transformer": "^0.1.16",
114
+ "vue-tsc": "^3.0.6",
115
+ "vue-tsc1": "npm:vue-tsc@1.8.27",
116
+ "vue-tsc2.0": "npm:vue-tsc@2.0.29",
117
+ "vue": "^3.5.20",
105
118
  "zod": "^4.1.1"
106
119
  },
107
120
  "description": "dler (prev. relidler) is a flexible, unified, and fully automated bundler for TypeScript and JavaScript projects, as well as an NPM and JSR publishing tool.",
@@ -109,7 +122,7 @@
109
122
  "license": "MIT",
110
123
  "name": "@reliverse/dler",
111
124
  "type": "module",
112
- "version": "1.7.112",
125
+ "version": "1.7.113",
113
126
  "keywords": [
114
127
  "reliverse",
115
128
  "cli",