@reliverse/dler 1.7.134 → 1.7.136

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.
@@ -146,10 +146,10 @@ export declare const optionsSchema: z.ZodObject<{
146
146
  cwd: z.ZodString;
147
147
  config: z.ZodOptional<z.ZodString>;
148
148
  database: z.ZodOptional<z.ZodEnum<{
149
- mysql: "mysql";
150
149
  sqlite: "sqlite";
151
- mongodb: "mongodb";
152
150
  postgres: "postgres";
151
+ mysql: "mysql";
152
+ mongodb: "mongodb";
153
153
  mssql: "mssql";
154
154
  "drizzle:pg": "drizzle:pg";
155
155
  "drizzle:mysql": "drizzle:mysql";
@@ -165,7 +165,7 @@ export declare const optionsSchema: z.ZodObject<{
165
165
  }, z.core.$strip>;
166
166
  export declare const outroText = "\uD83E\uDD73 All Done, Happy Hacking!";
167
167
  export declare function getLatestNpmVersion(packageName: string): Promise<string>;
168
- export declare function getPackageManager(): Promise<"bun" | "npm" | "yarn" | "pnpm">;
168
+ export declare function getPackageManager(): Promise<"npm" | "bun" | "yarn" | "pnpm">;
169
169
  export declare function getEnvFiles(cwd: string): Promise<string[]>;
170
170
  export declare function updateEnvs({ envs, files, isCommented, }: {
171
171
  /**
@@ -1,5 +1,5 @@
1
1
  export declare const PROJECT_ROOT: string;
2
- export declare const cliVersion = "1.7.134";
2
+ export declare const cliVersion = "1.7.136";
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.134";
4
+ const version = "1.7.136";
5
5
  export const cliVersion = version;
6
6
  export const cliName = "@reliverse/rse";
7
7
  export const rseName = "@reliverse/rse";
@@ -90,7 +90,6 @@ function getCoreEntrySrcDir(isDev) {
90
90
  function generateJsoncConfig(isDev, pkgDescription) {
91
91
  const schemaUrl = `${rseOrg}/schema.json`;
92
92
  const verboseValue = getValue(isDev, true, DEFAULT_CONFIG_RELIVERSE.commonVerbose);
93
- const registryValue = getValue(isDev, "npm-jsr", DEFAULT_CONFIG_RELIVERSE.commonPubRegistry);
94
93
  const pausePublishValue = getValue(isDev, false, DEFAULT_CONFIG_RELIVERSE.commonPubPause);
95
94
  const coreDescriptionValue = getValue(
96
95
  isDev,
@@ -231,7 +230,7 @@ function generateJsoncConfig(isDev, pkgDescription) {
231
230
  "bumpSet": "${DEFAULT_CONFIG_RELIVERSE.bumpSet}",
232
231
  // Common configuration
233
232
  "commonPubPause": ${pausePublishValue},
234
- "commonPubRegistry": "${registryValue}",
233
+ "commonPubRegistry": ${DEFAULT_CONFIG_RELIVERSE.commonPubRegistry},
235
234
  "commonVerbose": ${verboseValue},
236
235
  "displayBuildPubLogs": ${DEFAULT_CONFIG_RELIVERSE.displayBuildPubLogs},
237
236
  // Core configuration
@@ -405,7 +404,6 @@ function generateConfig(isDev, pkgDescription, configKind = "ts", usePackageImpo
405
404
  const importdefineConfigStatement = usePackageImport ? `import { defineConfig } from "@reliverse/dler";` : `import { defineConfig } from "./reltypes";`;
406
405
  const verboseValue = getValue(isDev, true, DEFAULT_CONFIG_RELIVERSE.commonVerbose);
407
406
  const coreIsCLI = getCoreIsCLI(isDev);
408
- const registryValue = getValue(isDev, "npm-jsr", DEFAULT_CONFIG_RELIVERSE.commonPubRegistry);
409
407
  const pausePublishValue = getValue(isDev, false, DEFAULT_CONFIG_RELIVERSE.commonPubPause);
410
408
  const coreDescriptionValue = getValue(
411
409
  isDev,
@@ -553,7 +551,7 @@ function generateConfig(isDev, pkgDescription, configKind = "ts", usePackageImpo
553
551
  "",
554
552
  " // Common configuration",
555
553
  " commonPubPause: " + pausePublishValue + ",",
556
- ' commonPubRegistry: "' + registryValue + '",',
554
+ " commonPubRegistry: " + DEFAULT_CONFIG_RELIVERSE.commonPubRegistry + ",",
557
555
  " commonVerbose: " + verboseValue + ",",
558
556
  " displayBuildPubLogs: " + DEFAULT_CONFIG_RELIVERSE.displayBuildPubLogs + ",",
559
557
  "",
@@ -1,10 +1,10 @@
1
1
  import { z } from "zod";
2
2
  export declare const DatabaseSchema: z.ZodEnum<{
3
+ sqlite: "sqlite";
3
4
  none: "none";
5
+ postgres: "postgres";
4
6
  mysql: "mysql";
5
- sqlite: "sqlite";
6
7
  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,16 +17,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";
23
- convex: "convex";
22
+ next: "next";
24
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
- none: "none";
29
28
  bun: "bun";
29
+ none: "none";
30
30
  node: "node";
31
31
  workers: "workers";
32
32
  }>;
@@ -34,45 +34,45 @@ 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
37
  next: "next";
40
- "react-router": "react-router";
41
38
  "tanstack-router": "tanstack-router";
39
+ "react-router": "react-router";
42
40
  "tanstack-start": "tanstack-start";
41
+ nuxt: "nuxt";
43
42
  "native-nativewind": "native-nativewind";
44
43
  "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";
49
+ none: "none";
50
+ pwa: "pwa";
50
51
  tauri: "tauri";
51
52
  starlight: "starlight";
52
- turborepo: "turborepo";
53
- pwa: "pwa";
54
53
  husky: "husky";
54
+ turborepo: "turborepo";
55
55
  }>;
56
56
  export type Addons = z.infer<typeof AddonsSchema>;
57
57
  export declare const ExamplesSchema: z.ZodEnum<{
58
58
  none: "none";
59
- ai: "ai";
60
59
  todo: "todo";
60
+ ai: "ai";
61
61
  }>;
62
62
  export type Examples = z.infer<typeof ExamplesSchema>;
63
63
  export declare const PackageManagerSchema: z.ZodEnum<{
64
- bun: "bun";
65
64
  npm: "npm";
65
+ bun: "bun";
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";
72
- neon: "neon";
73
71
  turso: "turso";
72
+ neon: "neon";
74
73
  "prisma-postgres": "prisma-postgres";
75
74
  "mongodb-atlas": "mongodb-atlas";
75
+ supabase: "supabase";
76
76
  }>;
77
77
  export type DatabaseSetup = z.infer<typeof DatabaseSetupSchema>;
78
78
  export declare const APISchema: z.ZodEnum<{
@@ -14,7 +14,7 @@ export type BrowserRepoOption = "reliverse/template-browser-extension" | "unknow
14
14
  export declare function configureBrowserExtension(): Promise<{
15
15
  displayName: string;
16
16
  description: string;
17
- features: ("webview" | "language" | "commands" | "themes")[];
17
+ features: ("commands" | "webview" | "language" | "themes")[];
18
18
  activation: "onCommand" | "onLanguage" | "startup";
19
19
  publisher: string;
20
20
  }>;
@@ -24,7 +24,7 @@ export declare function configureBrowserExtension(): Promise<{
24
24
  export declare function configureVSCodeExtension(): Promise<{
25
25
  displayName: string;
26
26
  description: string;
27
- features: ("webview" | "language" | "commands" | "themes")[];
27
+ features: ("commands" | "webview" | "language" | "themes")[];
28
28
  activation: "onCommand" | "onLanguage" | "startup";
29
29
  publisher: string;
30
30
  }>;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "@babel/preset-typescript": "^7.27.1",
6
6
  "@hookform/resolvers": "^5.2.1",
7
7
  "@libsql/client": "^0.15.14",
8
- "@mendable/firecrawl-js": "^3.3.0",
8
+ "@mendable/firecrawl-js": "^4.1.0",
9
9
  "@mrleebo/prisma-ast": "^0.13.0",
10
10
  "@octokit/plugin-rest-endpoint-methods": "^16.0.0",
11
11
  "@octokit/request-error": "^7.0.0",
@@ -13,13 +13,13 @@
13
13
  "@radix-ui/react-label": "^2.1.7",
14
14
  "@radix-ui/react-select": "^2.2.6",
15
15
  "@radix-ui/react-slot": "^1.2.3",
16
- "@reliverse/bleump": "^1.1.8",
16
+ "@reliverse/bleump": "^1.2.0",
17
17
  "@reliverse/pathkit": "^1.3.4",
18
18
  "@reliverse/reglob": "^1.0.0",
19
19
  "@reliverse/relico": "^1.3.9",
20
20
  "@reliverse/relifso": "^1.4.5",
21
21
  "@reliverse/relinka": "^1.6.1",
22
- "@reliverse/rempts": "^1.7.58",
22
+ "@reliverse/rempts": "^1.7.60",
23
23
  "@reliverse/runtime": "^1.0.3",
24
24
  "@rollup/plugin-alias": "^5.1.1",
25
25
  "@rollup/plugin-commonjs": "^28.0.6",
@@ -74,7 +74,6 @@
74
74
  "octokit": "^5.0.3",
75
75
  "ofetch": "^1.4.1",
76
76
  "open": "^10.2.0",
77
- "ora": "^8.2.0",
78
77
  "p-all": "^5.0.0",
79
78
  "p-limit": "^7.1.1",
80
79
  "p-map": "^7.0.3",
@@ -93,7 +92,7 @@
93
92
  "react-hook-form": "^7.62.0",
94
93
  "registry-auth-token": "^5.1.0",
95
94
  "registry-url": "^7.2.0",
96
- "rollup": "^4.49.0",
95
+ "rollup": "^4.50.0",
97
96
  "rollup-plugin-dts": "^6.2.3",
98
97
  "sass": "^1.91.0",
99
98
  "scule": "^1.3.0",
@@ -123,7 +122,7 @@
123
122
  "license": "MIT",
124
123
  "name": "@reliverse/dler",
125
124
  "type": "module",
126
- "version": "1.7.134",
125
+ "version": "1.7.136",
127
126
  "author": "reliverse",
128
127
  "bugs": {
129
128
  "email": "blefnk@gmail.com",