@reliverse/dler 1.7.134 → 1.7.135

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.
@@ -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" | "pnpm" | "yarn" | "bun">;
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.135";
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.135";
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
  "",
@@ -20,8 +20,8 @@ export declare const BackendSchema: z.ZodEnum<{
20
20
  next: "next";
21
21
  express: "express";
22
22
  fastify: "fastify";
23
- convex: "convex";
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<{
@@ -46,8 +46,8 @@ 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
- biome: "biome";
50
49
  tauri: "tauri";
50
+ biome: "biome";
51
51
  starlight: "starlight";
52
52
  turborepo: "turborepo";
53
53
  pwa: "pwa";
@@ -61,9 +61,9 @@ 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
- bun: "bun";
65
64
  npm: "npm";
66
65
  pnpm: "pnpm";
66
+ bun: "bun";
67
67
  }>;
68
68
  export type PackageManager = z.infer<typeof PackageManagerSchema>;
69
69
  export declare const DatabaseSetupSchema: z.ZodEnum<{
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.59",
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.135",
127
126
  "author": "reliverse",
128
127
  "bugs": {
129
128
  "email": "blefnk@gmail.com",