@reliverse/dler 1.7.136 → 1.7.138

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,9 +146,9 @@ 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
- sqlite: "sqlite";
150
149
  postgres: "postgres";
151
150
  mysql: "mysql";
151
+ sqlite: "sqlite";
152
152
  mongodb: "mongodb";
153
153
  mssql: "mssql";
154
154
  "drizzle:pg": "drizzle:pg";
@@ -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<"npm" | "bun" | "yarn" | "pnpm">;
168
+ export declare function getPackageManager(): Promise<"bun" | "npm" | "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.136";
2
+ export declare const cliVersion = "1.7.138";
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.136";
4
+ const version = "1.7.138";
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";
4
3
  none: "none";
5
4
  postgres: "postgres";
6
5
  mysql: "mysql";
6
+ sqlite: "sqlite";
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
- drizzle: "drizzle";
13
12
  prisma: "prisma";
13
+ drizzle: "drizzle";
14
14
  mongoose: "mongoose";
15
15
  }>;
16
16
  export type ORM = z.infer<typeof ORMSchema>;
@@ -34,11 +34,11 @@ 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
+ "react-router": "react-router";
37
39
  next: "next";
38
40
  "tanstack-router": "tanstack-router";
39
- "react-router": "react-router";
40
41
  "tanstack-start": "tanstack-start";
41
- nuxt: "nuxt";
42
42
  "native-nativewind": "native-nativewind";
43
43
  "native-unistyles": "native-unistyles";
44
44
  solid: "solid";
@@ -56,13 +56,13 @@ export declare const AddonsSchema: z.ZodEnum<{
56
56
  export type Addons = z.infer<typeof AddonsSchema>;
57
57
  export declare const ExamplesSchema: z.ZodEnum<{
58
58
  none: "none";
59
- todo: "todo";
60
59
  ai: "ai";
60
+ todo: "todo";
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>;
@@ -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: ("commands" | "webview" | "language" | "themes")[];
17
+ features: ("webview" | "language" | "commands" | "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: ("commands" | "webview" | "language" | "themes")[];
27
+ features: ("webview" | "language" | "commands" | "themes")[];
28
28
  activation: "onCommand" | "onLanguage" | "startup";
29
29
  publisher: string;
30
30
  }>;
package/package.json CHANGED
@@ -19,7 +19,7 @@
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.60",
22
+ "@reliverse/rempts": "^1.7.61",
23
23
  "@reliverse/runtime": "^1.0.3",
24
24
  "@rollup/plugin-alias": "^5.1.1",
25
25
  "@rollup/plugin-commonjs": "^28.0.6",
@@ -122,7 +122,7 @@
122
122
  "license": "MIT",
123
123
  "name": "@reliverse/dler",
124
124
  "type": "module",
125
- "version": "1.7.136",
125
+ "version": "1.7.138",
126
126
  "author": "reliverse",
127
127
  "bugs": {
128
128
  "email": "blefnk@gmail.com",