@reliverse/dler 1.7.112 → 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.
@@ -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.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.112";
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", "typescript", "@reliverse/dler"],
35
+ global: ["@types", "biome", "eslint", "knip", "prettier", "@reliverse/rse"],
36
36
  "dist-npm": [],
37
37
  "dist-jsr": [],
38
38
  "dist-libs": {}
@@ -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",
@@ -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", "typescript", "@reliverse/dler"],
1002
+ global: ["@types", "biome", "eslint", "knip", "prettier", "@reliverse/rse"],
1003
1003
  "dist-npm": [],
1004
1004
  "dist-jsr": [],
1005
1005
  "dist-libs": {},
@@ -1,17 +1,17 @@
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";
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<{
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<{
@@ -26,8 +26,8 @@ export declare const BackendSchema: z.ZodEnum<{
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>;
@@ -37,18 +37,18 @@ 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";
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
- turborepo: "turborepo";
51
49
  tauri: "tauri";
50
+ biome: "biome";
51
+ turborepo: "turborepo";
52
52
  starlight: "starlight";
53
53
  pwa: "pwa";
54
54
  husky: "husky";
@@ -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
+ supabase: "supabase";
71
72
  neon: "neon";
72
73
  turso: "turso";
73
- supabase: "supabase";
74
74
  "prisma-postgres": "prisma-postgres";
75
75
  "mongodb-atlas": "mongodb-atlas";
76
76
  }>;
@@ -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.112",
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
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "dependencies": {
3
3
  "@ai-sdk/openai": "^2.0.20",
4
+ "@babel/preset-react": "^7.27.1",
5
+ "@babel/preset-typescript": "^7.27.1",
4
6
  "@hookform/resolvers": "^5.2.1",
5
7
  "@libsql/client": "^0.15.12",
6
8
  "@mendable/firecrawl-js": "^3.2.0",
9
+ "@mrleebo/prisma-ast": "^0.13.0",
7
10
  "@octokit/plugin-rest-endpoint-methods": "^16.0.0",
8
11
  "@octokit/request-error": "^7.0.0",
9
12
  "@octokit/rest": "^22.0.0",
@@ -27,6 +30,9 @@
27
30
  "@sinclair/typebox": "^0.34.40",
28
31
  "@uploadcare/upload-client": "^6.17.0",
29
32
  "@vercel/sdk": "^1.10.6",
33
+ "@volar/typescript": "^2.4.23",
34
+ "@vue/language-core": "^3.0.6",
35
+ "@vue/language-core2.0": "npm:@vue/language-core@2.0.29",
30
36
  "ai": "^5.0.23",
31
37
  "async-listen": "^3.1.0",
32
38
  "autoprefixer": "^10.4.21",
@@ -41,6 +47,7 @@
41
47
  "defu": "^6.1.4",
42
48
  "destr": "^2.0.5",
43
49
  "detect-package-manager": "^3.0.2",
50
+ "drizzle-kit": "^0.31.4",
44
51
  "drizzle-orm": "^0.44.5",
45
52
  "enquirer": "^2.4.1",
46
53
  "esbuild": "^0.25.9",
@@ -62,6 +69,7 @@
62
69
  "magic-string": "^0.30.18",
63
70
  "magicast": "^0.3.5",
64
71
  "mlly": "^1.8.0",
72
+ "mysql2": "^3.14.3",
65
73
  "nanoid": "^5.1.5",
66
74
  "nypm": "^0.6.1",
67
75
  "octokit": "^5.0.3",
@@ -73,35 +81,42 @@
73
81
  "p-map": "^7.0.3",
74
82
  "path-key": "^4.0.0",
75
83
  "pkg-types": "^2.3.0",
76
- "postcss": "^8.5.6",
77
84
  "postcss-nested": "^7.0.2",
85
+ "postcss": "^8.5.6",
86
+ "postgres": "^3.4.7",
78
87
  "posthog-node": "^5.7.0",
79
88
  "pretty-bytes": "^7.0.1",
80
89
  "pretty-ms": "^9.2.0",
81
90
  "querystring": "^0.2.1",
82
91
  "random-words": "^2.0.1",
83
- "react": "^19.1.1",
84
92
  "react-dom": "^19.1.1",
85
93
  "react-hook-form": "^7.62.0",
94
+ "react": "^19.1.1",
86
95
  "registry-auth-token": "^5.1.0",
87
96
  "registry-url": "^7.2.0",
88
- "rollup": "^4.48.1",
89
97
  "rollup-plugin-dts": "^6.2.3",
98
+ "rollup": "^4.48.1",
99
+ "sass": "^1.90.0",
90
100
  "scule": "^1.3.0",
91
101
  "semver": "^7.7.2",
92
102
  "shebang-command": "^2.0.0",
93
103
  "simple-git": "^3.28.0",
94
104
  "strip-json-comments": "^5.0.3",
95
105
  "tailwind-merge": "^3.3.1",
96
- "tailwindcss": "^4.1.12",
97
106
  "tailwindcss-animate": "^1.0.7",
98
- "tar": "^7.4.3",
107
+ "tailwindcss": "^4.1.12",
99
108
  "tar-stream": "^3.1.7",
109
+ "tar": "^7.4.3",
100
110
  "tinyglobby": "^0.2.14",
101
111
  "ts-morph": "^26.0.0",
102
112
  "uncrypto": "^0.1.3",
103
113
  "untyped": "^2.0.0",
104
114
  "uploadthing": "^7.7.4",
115
+ "vue-sfc-transformer": "^0.1.16",
116
+ "vue-tsc": "^3.0.6",
117
+ "vue-tsc1": "npm:vue-tsc@1.8.27",
118
+ "vue-tsc2.0": "npm:vue-tsc@2.0.29",
119
+ "vue": "^3.5.20",
105
120
  "zod": "^4.1.1"
106
121
  },
107
122
  "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 +124,7 @@
109
124
  "license": "MIT",
110
125
  "name": "@reliverse/dler",
111
126
  "type": "module",
112
- "version": "1.7.112",
127
+ "version": "1.7.114",
113
128
  "keywords": [
114
129
  "reliverse",
115
130
  "cli",