@reliverse/dler 1.7.100 → 1.7.102

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.
package/bin/app/cmds.js DELETED
@@ -1,61 +0,0 @@
1
- import { callCmdImpl, getTypedCmdImpl, loadCommand } from "@reliverse/rempts";
2
- export async function loadTypedCommand(cmdName) {
3
- return await loadCommand(cmdName);
4
- }
5
- export const getAddCmd = async () => loadTypedCommand("add");
6
- export const getAggCmd = async () => loadTypedCommand("agg");
7
- export const getAiCmd = async () => loadTypedCommand("ai");
8
- export const getBetterAuthCmd = async () => loadTypedCommand("better_auth");
9
- export const getBetterAuthGenerateCmd = async () => loadTypedCommand("better_auth_generate");
10
- export const getBetterAuthGenerateSecretCmd = async () => loadTypedCommand("better_auth_generateSecret");
11
- export const getBetterAuthInitCmd = async () => loadTypedCommand("better_auth_init");
12
- export const getBetterAuthMigrateCmd = async () => loadTypedCommand("better_auth_migrate");
13
- export const getBuildCmd = async () => loadTypedCommand("build");
14
- export const getBuildBinaryCmd = async () => loadTypedCommand("build_binary");
15
- export const getCatalogCmd = async () => loadTypedCommand("catalog");
16
- export const getCheckCmd = async () => loadTypedCommand("check");
17
- export const getCliCmd = async () => loadTypedCommand("cli");
18
- export const getCloneCmd = async () => loadTypedCommand("clone");
19
- export const getCmodCmd = async () => loadTypedCommand("cmod");
20
- export const getConfigCmd = async () => loadTypedCommand("config");
21
- export const getConvCmd = async () => loadTypedCommand("conv");
22
- export const getCreateCmd = async () => loadTypedCommand("create");
23
- export const getEnvCmd = async () => loadTypedCommand("env");
24
- export const getFsCmd = async () => loadTypedCommand("fs");
25
- export const getGetCmd = async () => loadTypedCommand("get");
26
- export const getHelpCmd = async () => loadTypedCommand("help");
27
- export const getInitCmd = async () => loadTypedCommand("init");
28
- export const getInjectCmd = async () => loadTypedCommand("inject");
29
- export const getInstallCmd = async () => loadTypedCommand("install");
30
- export const getInvokeCmd = async () => loadTypedCommand("invoke");
31
- export const getLibsCmd = async () => loadTypedCommand("libs");
32
- export const getLoginCmd = async () => loadTypedCommand("login");
33
- export const getLogoutCmd = async () => loadTypedCommand("logout");
34
- export const getMagicCmd = async () => loadTypedCommand("magic");
35
- export const getMemoryCmd = async () => loadTypedCommand("memory");
36
- export const getMergeCmd = async () => loadTypedCommand("merge");
37
- export const getMigrateCmd = async () => loadTypedCommand("migrate");
38
- export const getMkdistCmd = async () => loadTypedCommand("mkdist");
39
- export const getMrseCmd = async () => loadTypedCommand("mrse");
40
- export const getPackCmd = async () => loadTypedCommand("pack");
41
- export const getPubCmd = async () => loadTypedCommand("pub");
42
- export const getRemdnCmd = async () => loadTypedCommand("remdn");
43
- export const getRemoveCmd = async () => loadTypedCommand("remove");
44
- export const getRemptsCmd = async () => loadTypedCommand("rempts");
45
- export const getSchemaCmd = async () => loadTypedCommand("schema");
46
- export const getSplitCmd = async () => loadTypedCommand("split");
47
- export const getStudioCmd = async () => loadTypedCommand("studio");
48
- export const getToolboxCmd = async () => loadTypedCommand("toolbox");
49
- export const getTransformCmd = async () => loadTypedCommand("transform");
50
- export const getUpdateCmd = async () => loadTypedCommand("update");
51
- export const getUpdateMigrateCmd = async () => loadTypedCommand("update_migrate");
52
- export const getUpgradeCmd = async () => loadTypedCommand("upgrade");
53
- export const getUploadCmd = async () => loadTypedCommand("upload");
54
- export const getWebCmd = async () => loadTypedCommand("web");
55
- export const getXCmd = async () => loadTypedCommand("x");
56
- export async function callCmd(cmdName, args) {
57
- await callCmdImpl(cmdName, args);
58
- }
59
- export async function getTypedCmd(cmdName) {
60
- return await getTypedCmdImpl(cmdName);
61
- }
@@ -1,2 +0,0 @@
1
- declare const _default: import("@reliverse/rempts").Command<import("@reliverse/rempts").EmptyArgs>;
2
- export default _default;