@reliverse/dler 1.7.148 → 1.7.150

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<"npm" | "yarn" | "pnpm" | "bun">;
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.148";
2
+ export declare const cliVersion = "1.7.150";
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.148";
4
+ const version = "1.7.150";
5
5
  export const cliVersion = version;
6
6
  export const cliName = "@reliverse/rse";
7
7
  export const rseName = "@reliverse/rse";
@@ -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";
64
65
  npm: "npm";
65
66
  pnpm: "pnpm";
66
- bun: "bun";
67
67
  }>;
68
68
  export type PackageManager = z.infer<typeof PackageManagerSchema>;
69
69
  export declare const DatabaseSetupSchema: 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: ("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
@@ -123,7 +123,7 @@
123
123
  "license": "MIT",
124
124
  "name": "@reliverse/dler",
125
125
  "type": "module",
126
- "version": "1.7.148",
126
+ "version": "1.7.150",
127
127
  "author": "reliverse",
128
128
  "bugs": {
129
129
  "email": "blefnk@gmail.com",