@reliverse/dler 1.7.110 → 1.7.112
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/ai/ai-impl/ai-auth.js +0 -2
- package/bin/app/ai/ai-impl/mcp/mcp-mod.js +0 -2
- package/bin/app/better/auth/(utils)/get-config.js +2 -1
- package/bin/app/better/auth/init/cmd.js +4 -3
- package/bin/app/build/cmd.js +4 -1
- package/bin/app/build/impl.d.ts +3 -3
- package/bin/app/build/impl.js +1 -3
- package/bin/app/config/constants.d.ts +1 -1
- package/bin/app/config/constants.js +1 -1
- package/bin/app/login/login-impl.d.ts +0 -1
- package/bin/app/login/login-impl.js +1 -2
- package/bin/app/migrate/cmd.d.ts +12 -0
- package/bin/app/migrate/cmd.js +87 -1
- package/bin/app/migrate/codemods/monorepo-catalog.d.ts +96 -0
- package/bin/app/{update/migrate/cmd.js → migrate/codemods/monorepo-catalog.js} +16 -104
- package/bin/app/mkdist/cmd.js +3 -1
- package/bin/app/providers/better-t-stack/types.d.ts +11 -11
- package/bin/app/providers/reliverse-stack/rs-impl.d.ts +2 -2
- package/bin/app/pub/cmd.js +3 -1
- package/bin/app/pub/impl.d.ts +2 -2
- package/bin/app/pub/impl.js +3 -2
- package/bin/app/update/cmd.d.ts +10 -0
- package/bin/app/update/cmd.js +155 -901
- package/bin/app/update/impl.d.ts +42 -0
- package/bin/app/update/impl.js +260 -0
- package/bin/app/update/utils.d.ts +134 -0
- package/bin/app/update/utils.js +899 -0
- package/bin/dler.js +1 -6
- package/bin/mod.d.ts +167 -19
- package/bin/mod.js +300 -60
- package/package.json +1 -2
- package/bin/app/update/cmd-2.d.ts +0 -2
- package/bin/app/update/cmd-2.js +0 -50
- package/bin/app/update/migrate/cmd.d.ts +0 -23
- package/bin/app/update/update-impl.d.ts +0 -2
- package/bin/app/update/update-impl.js +0 -50
- package/bin/app/upgrade/cmd.d.ts +0 -8
- package/bin/app/upgrade/cmd.js +0 -302
package/bin/dler.js
CHANGED
|
@@ -15,13 +15,12 @@ import {
|
|
|
15
15
|
} from "./app/init/use-template/cp-modules/cli-main-modules/modules/showStartEndPrompt.js";
|
|
16
16
|
import { default as pubCmd } from "./app/pub/cmd.js";
|
|
17
17
|
import { default as updateCmd } from "./app/update/cmd.js";
|
|
18
|
-
import { default as upgradeCmd } from "./app/upgrade/cmd.js";
|
|
19
18
|
import { promptAggCommand } from "./app/utils/agg/agg-1.js";
|
|
20
19
|
const MENU_CMDS = ["agg", "build", "pub", "update"];
|
|
21
20
|
const main = defineCommand({
|
|
22
21
|
meta: {
|
|
23
22
|
name: "dler",
|
|
24
|
-
version: "1.7.
|
|
23
|
+
version: "1.7.112",
|
|
25
24
|
description: `Displays dler's command menu.
|
|
26
25
|
To see ALL available commands and arguments, run: 'dler --help' (or 'dler <command> --help')
|
|
27
26
|
Available menu commands: ${MENU_CMDS.join(", ")}`
|
|
@@ -82,10 +81,6 @@ Available menu commands: ${MENU_CMDS.join(", ")}`
|
|
|
82
81
|
await callCmd(updateCmd, {});
|
|
83
82
|
break;
|
|
84
83
|
}
|
|
85
|
-
case "upgrade": {
|
|
86
|
-
await callCmd(upgradeCmd, {});
|
|
87
|
-
break;
|
|
88
|
-
}
|
|
89
84
|
case "agg": {
|
|
90
85
|
await promptAggCommand();
|
|
91
86
|
break;
|
package/bin/mod.d.ts
CHANGED
|
@@ -4,7 +4,9 @@ export { useBetterAuth } from "./app/add/add-local/auth/better-auth.js";
|
|
|
4
4
|
export { useClerkAuth } from "./app/add/add-local/auth/clerk-auth.js";
|
|
5
5
|
export { useNextAuth } from "./app/add/add-local/auth/next-auth.js";
|
|
6
6
|
export { getPromptContent } from "./app/add/add-local/core/prompts.js";
|
|
7
|
+
export type { TemplateUpdateInfo } from "./app/add/add-local/core/templates.js";
|
|
7
8
|
export { checkForTemplateUpdate, getTemplateUpdateInfo, updateProjectTemplateDate, } from "./app/add/add-local/core/templates.js";
|
|
9
|
+
export type { ShowMenuResult } from "./app/add/add-local/core/types.js";
|
|
8
10
|
export { useDrizzleORM } from "./app/add/add-local/db/drizzle.js";
|
|
9
11
|
export { usePrismaORM } from "./app/add/add-local/db/prisma.js";
|
|
10
12
|
export { useUploadthing } from "./app/add/add-local/files/uploadthing.js";
|
|
@@ -36,21 +38,45 @@ export { use21stUI } from "./app/add/add-local/ui/21st.js";
|
|
|
36
38
|
export { useShadcnUI } from "./app/add/add-local/ui/shadcn.js";
|
|
37
39
|
export { useTailwindCSS } from "./app/add/add-local/ui/tailwind.js";
|
|
38
40
|
export { CACHE_ROOT_DIR, DEFAULT_BRANCH, getRepoCacheDir, RULE_FILE_EXTENSION, RULES_REPOS, } from "./app/add/add-rule/add-rule-const.js";
|
|
39
|
-
export { handleDirectRules, showRulesMenu
|
|
41
|
+
export { handleDirectRules, showRulesMenu } from "./app/add/add-rule/add-rule-impl.js";
|
|
42
|
+
export type { RuleRepo, UnghRepoResponse } from "./app/add/add-rule/add-rule-types.js";
|
|
40
43
|
export { checkForRuleUpdates, checkRulesRepoUpdate, convertTsToMdc, downloadRules, handleRuleUpdates, hasCursorRulesDir, hasInstalledRules, installRules, } from "./app/add/add-rule/add-rule-utils.js";
|
|
41
44
|
export { ensureOpenAIKey } from "./app/ai/ai-impl/ai-auth.js";
|
|
42
45
|
export { aiChat } from "./app/ai/ai-impl/ai-chat.js";
|
|
43
46
|
export { AGENT_NAMES, CIRCULAR_TRIGGERS, EXIT_KEYWORDS, MAX_TOKENS, MODEL, MODEL_NAME, } from "./app/ai/ai-impl/ai-const.js";
|
|
44
47
|
export { aiAgenticTool } from "./app/ai/ai-impl/ai-tools.js";
|
|
48
|
+
export type { AIAgentOptions, AiSdkAgent, CircularTrigger } from "./app/ai/ai-impl/ai-types.js";
|
|
45
49
|
export { aiCodeCommand } from "./app/ai/ai-impl/code/code-mod.js";
|
|
46
50
|
export { handleMcpCommand } from "./app/ai/ai-impl/mcp/mcp-mod.js";
|
|
51
|
+
export type { LintSuggestion } from "./app/ai/ai-impl/relinter/relinter.js";
|
|
47
52
|
export { agentRelinter, collectLintableFiles, gatherLintSuggestions, writeSuggestionsToFile, } from "./app/ai/ai-impl/relinter/relinter.js";
|
|
48
53
|
export { aiMenu } from "./app/ai/ai-menu.js";
|
|
54
|
+
export type { CommonIndexConfig, Import } from "./app/better/auth/(generators)/auth-config.js";
|
|
55
|
+
export { generateAuthConfig } from "./app/better/auth/(generators)/auth-config.js";
|
|
56
|
+
export { convertToSnakeCase, generateDrizzleSchema, } from "./app/better/auth/(generators)/drizzle.js";
|
|
57
|
+
export { adapters, getGenerator } from "./app/better/auth/(generators)/index.js";
|
|
58
|
+
export { generateMigrations } from "./app/better/auth/(generators)/kysely.js";
|
|
59
|
+
export { generatePrismaSchema } from "./app/better/auth/(generators)/prisma.js";
|
|
60
|
+
export type { SchemaGenerator } from "./app/better/auth/(generators)/types.js";
|
|
61
|
+
export { addSvelteKitEnvModules, filterPrivateEnv, filterPublicEnv, } from "./app/better/auth/(utils)/add-svelte-kit-env-modules.js";
|
|
62
|
+
export { checkPackageManagers } from "./app/better/auth/(utils)/check-package-managers.js";
|
|
63
|
+
export { formatMilliseconds } from "./app/better/auth/(utils)/format-ms.js";
|
|
64
|
+
export { generateSecretHash } from "./app/better/auth/(utils)/generate-secret.js";
|
|
65
|
+
export { getConfig, possiblePaths } from "./app/better/auth/(utils)/get-config.js";
|
|
66
|
+
export { getPackageInfo } from "./app/better/auth/(utils)/get-package-info.js";
|
|
67
|
+
export { getTsconfigInfo, stripJsonComments } from "./app/better/auth/(utils)/get-tsconfig-info.js";
|
|
68
|
+
export { configPath, schemaPath } from "./app/better/auth/consts.js";
|
|
69
|
+
export type { SupportedDatabases, SupportedPlugin } from "./app/better/auth/init/cmd.js";
|
|
70
|
+
export { init, supportedPlugins } from "./app/better/auth/init/cmd.js";
|
|
71
|
+
export { migrateAction } from "./app/better/auth/migrate/cmd.js";
|
|
49
72
|
export type { LibraryBuildOptions } from "./app/build/build-library.js";
|
|
50
73
|
export { library_buildLibrary } from "./app/build/build-library.js";
|
|
51
74
|
export { regular_buildJsrDist, regular_buildNpmDist } from "./app/build/build-regular.js";
|
|
52
75
|
export { dlerBuild } from "./app/build/impl.js";
|
|
53
76
|
export { libraries_build, libraries_publish, library_buildFlow, library_pubFlow, } from "./app/build/library-flow.js";
|
|
77
|
+
export { dlerPostBuild, wrapper_CopyNonBuildFiles } from "./app/build/postbuild.js";
|
|
78
|
+
export { directoryExists, executeDlerHooks, getPackageManager, isCommandAvailable, } from "./app/build/ppb-utils.js";
|
|
79
|
+
export { dlerPreBuild } from "./app/build/prebuild.js";
|
|
54
80
|
export { autoPreset, definePreset } from "./app/build/providers/auto.js";
|
|
55
81
|
export { unifiedBuild } from "./app/build/providers/build.js";
|
|
56
82
|
export type { BunBuildOptions } from "./app/build/providers/bun/single-file.js";
|
|
@@ -72,7 +98,7 @@ export { getVueDeclarations } from "./app/build/providers/mkdist/mkdist-impl/uti
|
|
|
72
98
|
export { mkdistBuild } from "./app/build/providers/mkdist/mkdist-mod.js";
|
|
73
99
|
export { rollupBuild } from "./app/build/providers/rollup/build.js";
|
|
74
100
|
export { getRollupOptions } from "./app/build/providers/rollup/config.js";
|
|
75
|
-
export { cjsPlugin, fixCJSExportTypePlugin
|
|
101
|
+
export { cjsPlugin, fixCJSExportTypePlugin } from "./app/build/providers/rollup/plugins/cjs.js";
|
|
76
102
|
export { esbuild } from "./app/build/providers/rollup/plugins/esbuild.js";
|
|
77
103
|
export { JSONPlugin } from "./app/build/providers/rollup/plugins/json.js";
|
|
78
104
|
export { rawPlugin } from "./app/build/providers/rollup/plugins/raw.js";
|
|
@@ -84,33 +110,46 @@ export { typesBuild } from "./app/build/providers/untyped/untyped-mod.js";
|
|
|
84
110
|
export { arrayIncludes, dumpObject, extractExportFilenames, getpkg, inferPkgExternals, listRecursively, removeExtension, resolvePreset, rmdir, symlink, warn, withTrailingSlash, } from "./app/build/providers/utils.js";
|
|
85
111
|
export { validateDependencies, validatePackage } from "./app/build/providers/validate.js";
|
|
86
112
|
export { regular_buildFlow, regular_pubFlow } from "./app/build/regular-flow.js";
|
|
113
|
+
export { app, showWebUiMenu } from "./app/cli/impl.js";
|
|
87
114
|
export { useFirecrawl } from "./app/clone/firecrawl/firecrawl-mod.js";
|
|
88
115
|
export { runCodemods } from "./app/cmod/cmod-impl.js";
|
|
89
116
|
export { getBiomeConfig } from "./app/config/biome.js";
|
|
90
117
|
export { injectSectionComments } from "./app/config/comments.js";
|
|
91
|
-
export { CONFIG_CATEGORIES, cliConfigJsonc, cliConfigJsoncBak, cliConfigJsoncTmp, cliConfigTs, cliConfigTsBak, cliConfigTsTmp, cliDomainDocs, cliDomainEnv, cliDomainRoot, cliHomeDir, cliHomeRepos, cliHomeTmp, cliJsrPath, cliName, cliVersion, DEFAULT_CLI_USERNAME, DEFAULT_DOMAIN, dlerName, endTitle, FALLBACK_ENV_EXAMPLE_URL, homeDir, IGNORE_PATTERNS, memoryPath, PROJECT_ROOT, RSE_SCHEMA_DEV, RSE_SCHEMA_URL, rseName, rseOrg, rseOrgBase, tsconfigJson, UNKNOWN_VALUE, useLocalhost, } from "./app/config/constants.js";
|
|
118
|
+
export { CONCURRENCY_DEFAULT, CONFIG_CATEGORIES, cliConfigJsonc, cliConfigJsoncBak, cliConfigJsoncTmp, cliConfigTs, cliConfigTsBak, cliConfigTsTmp, cliDomainDocs, cliDomainEnv, cliDomainRoot, cliHomeDir, cliHomeRepos, cliHomeTmp, cliJsrPath, cliName, cliVersion, DEFAULT_CLI_USERNAME, DEFAULT_DOMAIN, dlerName, endTitle, FALLBACK_ENV_EXAMPLE_URL, homeDir, IGNORE_PATTERNS, memoryPath, PROJECT_ROOT, RSE_SCHEMA_DEV, RSE_SCHEMA_URL, rseName, rseOrg, rseOrgBase, SHOW_VERBOSE, tsconfigJson, UNKNOWN_STRING, UNKNOWN_VALUE, useLocalhost, validExtensions, } from "./app/config/constants.js";
|
|
92
119
|
export type { RequiredProjectContent } from "./app/config/content.js";
|
|
93
120
|
export { getProjectContent } from "./app/config/content.js";
|
|
94
121
|
export { ensureConfigMod } from "./app/config/core.js";
|
|
95
122
|
export { getOrCreateRseConfig } from "./app/config/core-cfg.js";
|
|
96
|
-
export { createRseConfig, generateRseConfig, writeRseConfig
|
|
97
|
-
export { generateDefaultRulesForProject, getDefaultRseConfig
|
|
98
|
-
export {
|
|
99
|
-
export { DEFAULT_CONFIG_RSE, PROJECT_FRAMEWORK_FILES, } from "./app/config/default-cfg.js";
|
|
123
|
+
export { createRseConfig, generateRseConfig, writeRseConfig } from "./app/config/create.js";
|
|
124
|
+
export { generateDefaultRulesForProject, getDefaultRseConfig } from "./app/config/def-utils.js";
|
|
125
|
+
export { DEFAULT_CONFIG_RSE, PROJECT_FRAMEWORK_FILES } from "./app/config/default-cfg.js";
|
|
100
126
|
export { detectFeatures, detectProject, detectProjectFramework, detectProjectsWithRseConfig, getPackageJson, getPackageJsonSafe, } from "./app/config/detect.js";
|
|
101
|
-
export { generateConfigFiles, generateProjectConfigs
|
|
127
|
+
export { generateConfigFiles, generateProjectConfigs } from "./app/config/gen-cfg.js";
|
|
102
128
|
export { getConfigBunfig, getConfigDler } from "./app/config/load.js";
|
|
103
129
|
export { migrateRseConfig } from "./app/config/migrate.js";
|
|
104
130
|
export { getRseConfigPath } from "./app/config/path.js";
|
|
131
|
+
export type { ConfigKind } from "./app/config/prepare.js";
|
|
105
132
|
export { ensureReliverseConfig, prepareReliverseEnvironment } from "./app/config/prepare.js";
|
|
106
133
|
export { askRseConfigType } from "./app/config/prompts.js";
|
|
107
134
|
export { readRseConfig, readRseTs } from "./app/config/read.js";
|
|
108
|
-
export {
|
|
109
|
-
export {
|
|
135
|
+
export { generateReltypesContent } from "./app/config/reltypes-content.js";
|
|
136
|
+
export { checkIfRegenerationNeeded, ensureReltypesFile } from "./app/config/reltypes-utils.js";
|
|
137
|
+
export { fixLineByLine, parseAndFixRseConfig, repairAndParseJSON } from "./app/config/repair.js";
|
|
138
|
+
export { generateJsonSchema, generateSchemaFile, rseSchema } from "./app/config/schema.js";
|
|
110
139
|
export { loadrse, watchrse } from "./app/config/unstable.js";
|
|
111
140
|
export { mergeWithDefaults, updateRseConfig } from "./app/config/update.js";
|
|
112
141
|
export { atomicWriteFile, cleanGitHubUrl, getBackupAndTempPaths, objectToCodeString, updateTsConfigInclude, } from "./app/config/utils.js";
|
|
142
|
+
export { resolveCrossLibs } from "./app/conv/cmd.js";
|
|
143
|
+
export { db } from "./app/db/client.js";
|
|
144
|
+
export { decrypt, encrypt } from "./app/db/config.js";
|
|
145
|
+
export { ad, getRandomAd, getRandomMessage, getWelcomeTitle, premium, randomAdContent, randomInitialMessage, randomProjectCategoryTitle, randomProjectFrameworkTitle, randomWebsiteDetailsTitle, randomWebsiteSubcategoryTitle, randomWelcomeMessages, randomWelcomeTitle, } from "./app/db/messages.js";
|
|
146
|
+
export { configKeysTable, userDataTable } from "./app/db/schema.js";
|
|
113
147
|
export { envArgImpl } from "./app/env/env-impl.js";
|
|
148
|
+
export { default } from "./app/get/cmd.js";
|
|
149
|
+
export { checkPowerShellVersion, installDlerStandalone, installFromGitHub, } from "./app/get/get-impl/get-core.js";
|
|
150
|
+
export { showManualBuilderMenu } from "./app/init/init-utils/init-impl.js";
|
|
151
|
+
export { determineProjectStatus, handleExistingProject, handleIncompleteProject, handleNewProject, handleProjectSelectionMenu, initMinimalrseProject, showExistingProjectMenu, } from "./app/init/init-utils/init-utils.js";
|
|
152
|
+
export { handleOpenProjectMenu } from "./app/init/init-utils/mm-deprecated/editor-menu.js";
|
|
114
153
|
export { COLUMN_TYPES } from "./app/init/mm-deprecated/drizzle/manageDrizzleConstants.js";
|
|
115
154
|
export { manageDrizzleSchema } from "./app/init/mm-deprecated/drizzle/manageDrizzleSchema.js";
|
|
116
155
|
export { addColumnToTable, addNewTable, appendTableToSchema, detectDatabaseProvider, generateTableFile, getAvailableTables, manageRelations, removeFromSchemaIndex, removeTable, removeTableFromSchema, renameTable, renameTableInSchema, setupDrizzle, updateSchemaIndex, updateTableNameInIndex, } from "./app/init/mm-deprecated/drizzle/manageDrizzleSchemaUtils.js";
|
|
@@ -120,12 +159,14 @@ export { INTEGRATION_CONFIGS } from "./app/init/mm-deprecated/feature-add.js";
|
|
|
120
159
|
export { REMOVAL_CONFIGS } from "./app/init/mm-deprecated/feature-rm.js";
|
|
121
160
|
export { manageShadcn } from "./app/init/mm-deprecated/shadcn/shadcn-mod.js";
|
|
122
161
|
export { handleDependencies, handleNextAction, handleNextActions, initializeProjectConfig, setupI18nSupport, shouldInstallDependencies, showSuccessAndNextSteps, } from "./app/init/use-template/cp-impl.js";
|
|
123
|
-
export { createMobileProject, createWebProject
|
|
162
|
+
export { createMobileProject, createWebProject } from "./app/init/use-template/cp-mod.js";
|
|
163
|
+
export type { MainMenuChoice } from "./app/init/use-template/cp-modules/cli-main-modules/cli-menu-items/getMainMenuOptions.js";
|
|
124
164
|
export { getMainMenuOptions } from "./app/init/use-template/cp-modules/cli-main-modules/cli-menu-items/getMainMenuOptions.js";
|
|
125
165
|
export { showCloneProjectMenu } from "./app/init/use-template/cp-modules/cli-main-modules/cli-menu-items/showCloneProjectMenu.js";
|
|
126
166
|
export { showAnykeyPrompt } from "./app/init/use-template/cp-modules/cli-main-modules/modules/showAnykeyPrompt.js";
|
|
127
167
|
export { showEndPrompt, showStartPrompt, } from "./app/init/use-template/cp-modules/cli-main-modules/modules/showStartEndPrompt.js";
|
|
128
168
|
export { copyFromExisting, ensureEnvExists, ensureExampleExists, fetchEnvExampleContent, getEnvPath, getLastEnvFilePath, getMissingKeys, promptAndSetMissingValues, saveLastEnvFilePath, } from "./app/init/use-template/cp-modules/compose-env-file/cef-impl.js";
|
|
169
|
+
export type { KeyType, KnownService, } from "./app/init/use-template/cp-modules/compose-env-file/cef-keys.js";
|
|
129
170
|
export { dashboards, defaultValues, KNOWN_SERVICES, keyTypeSchema, keyVarsSchema, knownServiceSchema, serviceKeySchema, } from "./app/init/use-template/cp-modules/compose-env-file/cef-keys.js";
|
|
130
171
|
export { composeEnvFile } from "./app/init/use-template/cp-modules/compose-env-file/cef-mod.js";
|
|
131
172
|
export { deployProject, selectDeploymentService, } from "./app/init/use-template/cp-modules/git-deploy-prompts/deploy.js";
|
|
@@ -140,12 +181,15 @@ export { archiveExistingRepoContent, handleExistingRepoContent, } from "./app/in
|
|
|
140
181
|
export { handleExistingRepo } from "./app/init/use-template/cp-modules/git-deploy-prompts/utils-repo-exists.js";
|
|
141
182
|
export { getVercelEnvVar, withRateLimit, } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-api.js";
|
|
142
183
|
export { checkVercelDeployment } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-check.js";
|
|
184
|
+
export type { ConfigurationOptions } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-config.js";
|
|
143
185
|
export { configureBranchProtection, configureResources, enableAnalytics, getConfigurationOptions, updateProject, } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-config.js";
|
|
144
186
|
export { createVercelProject, prepareVercelProjectCreation, } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-create.js";
|
|
145
187
|
export { createInitialVercelDeployment, monitorDeployment, } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-deploy.js";
|
|
146
188
|
export { getVercelProjectDomain } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-domain.js";
|
|
147
189
|
export { addEnvVarsToVercelProject } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-env.js";
|
|
190
|
+
export type { VercelTeam } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-team.js";
|
|
148
191
|
export { getPrimaryVercelTeam, getVercelTeams, verifyTeam, } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-team.js";
|
|
192
|
+
export type { DeploymentLog, DeploymentLogType, DeploymentOptions, EnvVar, VercelDeploymentConfig, VercelFramework, } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-types.js";
|
|
149
193
|
export { detectFramework, getEnvVars, saveVercelToken, verifyDomain, } from "./app/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-utils.js";
|
|
150
194
|
export type { InjectionLocation, InjectionOptions, InjectionResult, SingleInjection, } from "./app/inject/inject-impl-mod.js";
|
|
151
195
|
export { createInjection, injectAtLocation, injectMultiple, previewInjection, previewMultipleInjections, previewMultipleReverts, previewRevert, validateInjection, validateMultipleInjections, } from "./app/inject/inject-impl-mod.js";
|
|
@@ -155,10 +199,92 @@ export type { ApplyMagicSpellsOptions, ApplyMagicSpellsResult, FileWithSpells, }
|
|
|
155
199
|
export { applyMagicSpells, getAllAvailableRegistries, getFilesWithMagicSpells, processSingleOutputFile, } from "./app/magic/magic-apply.js";
|
|
156
200
|
export type { SpellDirective, SpellEvaluationContext, SpellInfo, SpellOutcome, } from "./app/magic/magic-spells.js";
|
|
157
201
|
export { evaluateMagicDirective, getAvailableSpells } from "./app/magic/magic-spells.js";
|
|
202
|
+
export { migrateAnythingToBun } from "./app/migrate/codemods/anything-bun.js";
|
|
203
|
+
export { commanderToRempts } from "./app/migrate/codemods/commander-rempts.js";
|
|
204
|
+
export { consoleToRelinka } from "./app/migrate/codemods/console-relinka.js";
|
|
205
|
+
export { migrateFsToRelifso } from "./app/migrate/codemods/fs-relifso.js";
|
|
206
|
+
export type { CatalogMergeResult, DependencyEntry, MigrationResult, } from "./app/migrate/codemods/monorepo-catalog.js";
|
|
207
|
+
export { displayMigrationResults, extractDependencies, mergeToCatalog, migrateFromCatalog, migrateToCatalog, removeCatalogFromRoot, replaceDependenciesWithCatalogRefs, restoreCatalogReferences, shouldSkipDependency, updateRootWithCatalog, } from "./app/migrate/codemods/monorepo-catalog.js";
|
|
208
|
+
export { migrateModuleResolution, migrateToBundler, migrateToNodeNext, } from "./app/migrate/codemods/nodenext-bundler.js";
|
|
209
|
+
export { migratePathToPathkit } from "./app/migrate/codemods/path-pathkit.js";
|
|
210
|
+
export { migrateReaddirToGlob } from "./app/migrate/codemods/readdir-glob.js";
|
|
211
|
+
export type { GenCfg, GenCfgJsonc } from "./app/mrse/mrse-impl.js";
|
|
158
212
|
export { downloadFileFromGitHub, ensureEnvCacheDir, getEnvCacheDir, getEnvCachePath, logVerbose, mrseVerbose, } from "./app/mrse/mrse-impl.js";
|
|
213
|
+
export { escapeTemplateString, getFileMetadata, hashFile, readFileForTemplate, unescapeTemplateString, walkDir, } from "./app/pack/cmd.js";
|
|
214
|
+
export type { DLER_TEMPLATE_NAMES } from "./app/providers/better-t-stack/better-t-stack-mod.js";
|
|
215
|
+
export { DLER_TEMPLATES, dlerTemplatesMap, } from "./app/providers/better-t-stack/better-t-stack-mod.js";
|
|
216
|
+
export type { FileMetadata, Template, TemplatesFileContent, } from "./app/providers/better-t-stack/better-t-stack-types.js";
|
|
217
|
+
export type { AvailableDependencies } from "./app/providers/better-t-stack/constants.js";
|
|
218
|
+
export { DEFAULT_CONFIG, dependencyVersionMap, PKG_ROOT, } from "./app/providers/better-t-stack/constants.js";
|
|
219
|
+
export { setupMongoDBAtlas } from "./app/providers/better-t-stack/helpers/database-providers/mongodb-atlas-setup.js";
|
|
220
|
+
export { setupNeonPostgres } from "./app/providers/better-t-stack/helpers/database-providers/neon-setup.js";
|
|
221
|
+
export { setupPrismaPostgres } from "./app/providers/better-t-stack/helpers/database-providers/prisma-postgres-setup.js";
|
|
222
|
+
export { setupSupabase } from "./app/providers/better-t-stack/helpers/database-providers/supabase-setup.js";
|
|
223
|
+
export { setupTurso } from "./app/providers/better-t-stack/helpers/database-providers/turso-setup.js";
|
|
224
|
+
export { createProject } from "./app/providers/better-t-stack/helpers/project-generation/create-project.js";
|
|
225
|
+
export { createReadme } from "./app/providers/better-t-stack/helpers/project-generation/create-readme.js";
|
|
226
|
+
export type { EnvVariable } from "./app/providers/better-t-stack/helpers/project-generation/env-setup.js";
|
|
227
|
+
export { addEnvVariablesToFile, setupEnvironmentVariables, } from "./app/providers/better-t-stack/helpers/project-generation/env-setup.js";
|
|
228
|
+
export { displayPostInstallInstructions } from "./app/providers/better-t-stack/helpers/project-generation/post-installation.js";
|
|
229
|
+
export { initializeGit, updatePackageConfigurations, } from "./app/providers/better-t-stack/helpers/project-generation/project-config.js";
|
|
230
|
+
export { copyBaseTemplate, handleExtras, setupAddonsTemplate, setupAuthTemplate, setupBackendFramework, setupDbOrmTemplates, setupExamplesTemplate, setupFrontendTemplates, } from "./app/providers/better-t-stack/helpers/project-generation/template-manager.js";
|
|
231
|
+
export { setupAddons } from "./app/providers/better-t-stack/helpers/setup/addons-setup.js";
|
|
232
|
+
export { setupApi } from "./app/providers/better-t-stack/helpers/setup/api-setup.js";
|
|
233
|
+
export { generateAuthSecret, setupAuth, } from "./app/providers/better-t-stack/helpers/setup/auth-setup.js";
|
|
234
|
+
export { setupBackendDependencies } from "./app/providers/better-t-stack/helpers/setup/backend-setup.js";
|
|
235
|
+
export { setupDatabase } from "./app/providers/better-t-stack/helpers/setup/db-setup.js";
|
|
236
|
+
export { setupExamples } from "./app/providers/better-t-stack/helpers/setup/examples-setup.js";
|
|
237
|
+
export { setupRuntime } from "./app/providers/better-t-stack/helpers/setup/runtime-setup.js";
|
|
238
|
+
export { setupStarlight } from "./app/providers/better-t-stack/helpers/setup/starlight-setup.js";
|
|
239
|
+
export { setupTauri } from "./app/providers/better-t-stack/helpers/setup/tauri-setup.js";
|
|
240
|
+
export { DLER_TPL_ADDONS } from "./app/providers/better-t-stack/packed/addons.js";
|
|
241
|
+
export { DLER_TPL_API } from "./app/providers/better-t-stack/packed/api.js";
|
|
242
|
+
export { DLER_TPL_AUTH } from "./app/providers/better-t-stack/packed/auth.js";
|
|
243
|
+
export { DLER_TPL_BACKEND } from "./app/providers/better-t-stack/packed/backend.js";
|
|
244
|
+
export { DLER_TPL_BASE } from "./app/providers/better-t-stack/packed/base.js";
|
|
245
|
+
export { DLER_TPL_DB } from "./app/providers/better-t-stack/packed/db.js";
|
|
246
|
+
export { DLER_TPL_EXAMPLES } from "./app/providers/better-t-stack/packed/examples.js";
|
|
247
|
+
export { DLER_TPL_EXTRAS } from "./app/providers/better-t-stack/packed/extras.js";
|
|
248
|
+
export { DLER_TPL_FRONTEND } from "./app/providers/better-t-stack/packed/frontend.js";
|
|
249
|
+
export { DLER_TPL_RUNTIME } from "./app/providers/better-t-stack/packed/runtime.js";
|
|
250
|
+
export { getAddonsChoice } from "./app/providers/better-t-stack/prompts/addons.js";
|
|
251
|
+
export { getApiChoice } from "./app/providers/better-t-stack/prompts/api.js";
|
|
252
|
+
export { getAuthChoice } from "./app/providers/better-t-stack/prompts/auth.js";
|
|
253
|
+
export { getBackendFrameworkChoice } from "./app/providers/better-t-stack/prompts/backend.js";
|
|
254
|
+
export { gatherConfig } from "./app/providers/better-t-stack/prompts/config-prompts.js";
|
|
255
|
+
export { getDatabaseChoice } from "./app/providers/better-t-stack/prompts/database.js";
|
|
256
|
+
export { getDBSetupChoice } from "./app/providers/better-t-stack/prompts/database-setup.js";
|
|
257
|
+
export { getExamplesChoice } from "./app/providers/better-t-stack/prompts/examples.js";
|
|
258
|
+
export { getFrontendChoice } from "./app/providers/better-t-stack/prompts/frontend.js";
|
|
259
|
+
export { getGitChoice } from "./app/providers/better-t-stack/prompts/git.js";
|
|
260
|
+
export { getinstallChoice } from "./app/providers/better-t-stack/prompts/install.js";
|
|
261
|
+
export { getORMChoice } from "./app/providers/better-t-stack/prompts/orm.js";
|
|
262
|
+
export { getPackageManagerChoice } from "./app/providers/better-t-stack/prompts/package-manager.js";
|
|
263
|
+
export { getProjectName } from "./app/providers/better-t-stack/prompts/project-name.js";
|
|
264
|
+
export { getRuntimeChoice } from "./app/providers/better-t-stack/prompts/runtime.js";
|
|
265
|
+
export type { Addons, API, AvailablePackageManagers, Backend, CLIInput, CreateInput, Database, DatabaseSetup, Examples, Frontend, ORM, ProjectConfig, ProjectName, Runtime, } from "./app/providers/better-t-stack/types.js";
|
|
266
|
+
export { AddonsSchema, APISchema, BackendSchema, DatabaseSchema, DatabaseSetupSchema, ExamplesSchema, FrontendSchema, ORMSchema, PackageManagerSchema, ProjectNameSchema, RuntimeSchema, } from "./app/providers/better-t-stack/types.js";
|
|
267
|
+
export { addPackageDependency } from "./app/providers/better-t-stack/utils/add-package-deps.js";
|
|
268
|
+
export { trackProjectCreation } from "./app/providers/better-t-stack/utils/analytics.js";
|
|
269
|
+
export { commandExists } from "./app/providers/better-t-stack/utils/command-exists.js";
|
|
270
|
+
export { displayConfig } from "./app/providers/better-t-stack/utils/display-config.js";
|
|
271
|
+
export { generateReproducibleCommand } from "./app/providers/better-t-stack/utils/generate-reproducible-command.js";
|
|
272
|
+
export { getLatestCLIVersion } from "./app/providers/better-t-stack/utils/get-latest-cli-version.js";
|
|
273
|
+
export { getPackageExecutionCommand } from "./app/providers/better-t-stack/utils/get-package-execution-command.js";
|
|
274
|
+
export { openUrl } from "./app/providers/better-t-stack/utils/open-url.js";
|
|
275
|
+
export { renderTitle, TITLE_TEXT } from "./app/providers/better-t-stack/utils/render-title.js";
|
|
276
|
+
export type { SponsorEntry } from "./app/providers/better-t-stack/utils/sponsors.js";
|
|
277
|
+
export { displaySponsors, fetchSponsors, SPONSORS_JSON_URL, } from "./app/providers/better-t-stack/utils/sponsors.js";
|
|
278
|
+
export { processTemplate } from "./app/providers/better-t-stack/utils/template-processor.js";
|
|
279
|
+
export { getProvidedFlags, processAndValidateFlags, validateConfigCompatibility, } from "./app/providers/better-t-stack/validation.js";
|
|
280
|
+
export { showNewProjectMenu, showOpenProjectMenu, } from "./app/providers/reliverse-stack/reliverse-stack-mod.js";
|
|
281
|
+
export type { BrowserRepoOption, VSCodeRepoOption, } from "./app/providers/reliverse-stack/rs-impl.js";
|
|
282
|
+
export { configureBrowserExtension, configureVSCodeExtension, optionCreateBrowserExtension, optionCreateVSCodeExtension, optionCreateWebProject, } from "./app/providers/reliverse-stack/rs-impl.js";
|
|
159
283
|
export { dlerPub } from "./app/pub/impl.js";
|
|
160
284
|
export { library_publishLibrary } from "./app/pub/pub-library.js";
|
|
161
285
|
export { regular_pubToJsr, regular_pubToNpm } from "./app/pub/pub-regular.js";
|
|
286
|
+
export type { ConfigRemdn } from "./app/remdn/cmd.js";
|
|
287
|
+
export { scanDirectories } from "./app/remdn/cmd.js";
|
|
162
288
|
export { checkDlerConfigHealth } from "./app/rules/reliverse/dler-config-health/dler-config-health.js";
|
|
163
289
|
export { checkFileExtensions } from "./app/rules/reliverse/file-extensions/file-extensions.js";
|
|
164
290
|
export { analyzeDependencies } from "./app/rules/reliverse/missing-deps/analyzer.js";
|
|
@@ -177,13 +303,21 @@ export type { AllowedFileExtensionsType } from "./app/rules/rules-consts.js";
|
|
|
177
303
|
export { ALLOWED_FILE_EXTENSIONS, ALLOWED_IMPORT_EXTENSIONS, STRICT_FILE_EXTENSIONS, STRICT_IMPORT_EXTENSIONS, } from "./app/rules/rules-consts.js";
|
|
178
304
|
export { displayCheckResults } from "./app/rules/rules-mod.js";
|
|
179
305
|
export { getAllFiles, getLineNumber, shouldIgnoreFile } from "./app/rules/rules-utils.js";
|
|
306
|
+
export { getAllSourceFiles, splitLargeFileByLines, splitLargeFunctions } from "./app/split/impl.js";
|
|
180
307
|
export { downloadRepoOption, rmTestsRuntime, showDevToolsMenu, } from "./app/toolbox/toolbox-impl.js";
|
|
181
308
|
export { openVercelTools } from "./app/toolbox/toolbox-vercel.js";
|
|
182
309
|
export type { BundleSource, IndentOptions, MagicStringOptions, OverwriteOptions, StringTransformer, TransformResult, UpdateOptions, } from "./app/transform/transform-impl-mod.js";
|
|
183
310
|
export { append, compose, createBundle, createTransformer, createTransformerFromMagicString, indent, insertAt, overwrite, pipe, prepend, readAndTransform, remove, replace, replaceAll, slice, template, transformAndWrite, transformMultiple, trim, update, wrapWith, } from "./app/transform/transform-impl-mod.js";
|
|
184
|
-
export type { BaseBuildEntry, BaseConfig, BiomeConfig, BiomeConfigResult, BuildContext, BuildEntry, BuildHooks, BuildOptions, BuildPreset, BumpMode, BundlerName, CheckIssue, CheckResult, CopyBuildEntry, CopyHooks, CreateLoaderOptions, DeploymentService, DetectedProject, DirectoryType, DistDirs, DistDirsAll, DlerConfig, Esbuild, EsbuildOptions, InputFile, IterableError, LibConfig, Loader, LoaderContext, LoaderResult, LoadFile, LogLevel, LogLevelConfig, LogLevelsConfig, MkdistBuildEntry, MkdistHooks, MkdistOptions, NpmOutExt, OutputFile, PerfTimer, ProjectArchitecture, ProjectCategory, ProjectFramework, ProjectSubcategory, RelinkaConfig, RelinkaDirsConfig, RelinterConfirm, RollupBuildEntry, RollupBuildOptions, RollupHooks, RollupOptions, RseConfig, RulesCheckOptions, Sourcemap, transpileFormat, transpileTarget, UnifiedBuildConfig, UntypedBuildEntry, UntypedHooks, UntypedOutput, UntypedOutputs, VSCodeSettings, } from "./app/types/mod.js";
|
|
311
|
+
export type { AppParams, BaseBuildEntry, BaseConfig, Behavior, BiomeConfig, BiomeConfigResult, BuildContext, BuildEntry, BuildHooks, BuildOptions, BuildPreset, BumpMode, BundlerName, CamelCase, CheckIssue, CheckResult, ColumnType, CopyBuildEntry, CopyHooks, CreateLoaderOptions, DatabasePostgresProvider, DatabaseProvider, DeploymentService, DetectedProject, DirectoryType, DistDirs, DistDirsAll, DlerConfig, Esbuild, EsbuildOptions, GitModParams, HyphenatedStringToCamelCase, IconName, InputFile, IntegrationCategory, IntegrationConfig, IntegrationOption, IntegrationOptions, IterableError, LibConfig, Loader, LoaderContext, LoaderResult, LoadFile, LogLevel, LogLevelConfig, LogLevelsConfig, MkdistBuildEntry, MkdistHooks, MkdistOptions, ModernReplacement, MonorepoType, NavItem, NavItemWithChildren, NavigationEntry, NpmOutExt, OutputFile, ParamsOmitReli, ParamsOmitSkipPN, PerfTimer, PrismaField, PrismaModel, ProjectArchitecture, ProjectCategory, ProjectConfigReturn, ProjectFramework, ProjectSelectionResult, ProjectSubcategory, RelinkaConfig, RelinkaDirsConfig, RelinterConfirm, RemovalConfig, RollupBuildEntry, RollupBuildOptions, RollupHooks, RollupOptions, RseConfig, RulesCheckOptions, ShadcnConfig, Sourcemap, SubOption, TableSchema, Theme, transpileFormat, transpileTarget, UnifiedBuildConfig, UntypedBuildEntry, UntypedHooks, UntypedOutput, UntypedOutputs, VSCodeSettings, } from "./app/types/mod.js";
|
|
312
|
+
export { DEFAULT_CONFIG_DLER, defineConfig } from "./app/types/mod.js";
|
|
313
|
+
export { checkPackageUpdates, displayUpdateSummary, getEffectiveLinker, handleCatalogOnlyUpdate, handleInstallation, handleInteractiveSelection, handleRecursiveUpdates, handleWorkspaceUpdates, prepareUpdateCandidates, updateRootPackageJson, validatePackageJson, validateUpdateArgs, } from "./app/update/impl.js";
|
|
314
|
+
export type { DependencyInfo, PackageCheckOptions, UpdateResult, UpgradeResult, } from "./app/update/utils.js";
|
|
315
|
+
export { applyVersionUpdate, CACHE_TTL, checkPackageUpdate, collectTargetDependencies, displayUpdateResults, fetchVersionFromRegistry, findAllPackageJsons, findWorkspacePackageJsons, getGlobalPackages, getLatestVersion, getPmOptions, handleGlobalUpdates, isCatalogReference, isMonorepo, isNonSemverSpecifier, isNpmAlias, isSemverCompatible, isWorkspaceDependency, prepareDependenciesForUpdate, runInstallCommand, runInstallCommandWithFilter, updateGlobalPackage, updatePackageJsonFile, updateWorkspacePackages, upgradeBun, upgradeDlerGlobal, upgradeDlerLocal, upgradeGit, upgradeNode, upgradeNpm, upgradePnpm, upgradeYarn, versionCache, } from "./app/update/utils.js";
|
|
316
|
+
export type { UploadFile, UploadResult } from "./app/upload/providers/providers-mod.js";
|
|
185
317
|
export { readFilesFromPaths, uploadToProvider, } from "./app/upload/providers/providers-mod.js";
|
|
318
|
+
export type { UploadedUCFile } from "./app/upload/providers/uploadcare.js";
|
|
186
319
|
export { uploadToUploadcare } from "./app/upload/providers/uploadcare.js";
|
|
320
|
+
export type { UploadedFile } from "./app/upload/providers/uploadthing.js";
|
|
187
321
|
export { uploadToUploadthing } from "./app/upload/providers/uploadthing.js";
|
|
188
322
|
export { formatBytes } from "./app/upload/upload-utils.js";
|
|
189
323
|
export { promptAggCommand } from "./app/utils/agg/agg-1.js";
|
|
@@ -210,8 +344,10 @@ export type { CommentMapping, CommentStyle, FileExtension } from "./app/utils/co
|
|
|
210
344
|
export { COMMENT_MAP, DEFAULT_COMMENT, getCommentPrefix } from "./app/utils/comments.js";
|
|
211
345
|
export { createPackageJSON } from "./app/utils/createPackageJSON.js";
|
|
212
346
|
export { decide } from "./app/utils/decideHelper.js";
|
|
347
|
+
export type { DetectionSource, DetectOptions, PkgManagerInfo, } from "./app/utils/dependencies/getUserPkgManager.js";
|
|
213
348
|
export { getAllPkgManagers, getUserPkgManager, } from "./app/utils/dependencies/getUserPkgManager.js";
|
|
214
349
|
export { setupI18nFiles } from "./app/utils/downloading/downloadI18nFiles.js";
|
|
350
|
+
export type { DownloadResult } from "./app/utils/downloading/downloadRepo.js";
|
|
215
351
|
export { downloadRepo } from "./app/utils/downloading/downloadRepo.js";
|
|
216
352
|
export { handleDownload } from "./app/utils/downloading/handleDownload.js";
|
|
217
353
|
export { hookChildProcess, notFoundError, verifyENOENT, verifyENOENTSync, } from "./app/utils/exec/exec-enoent.js";
|
|
@@ -232,31 +368,37 @@ export { detectBufferType, detectFileType, detectStreamType, getMimeType, isBina
|
|
|
232
368
|
export { finalizeBuild, finalizePub } from "./app/utils/finalize.js";
|
|
233
369
|
export { prepareCLIFiles, safeRename } from "./app/utils/fs-rename.js";
|
|
234
370
|
export { getEffectiveDir } from "./app/utils/getEffectiveDir.js";
|
|
235
|
-
export { pm } from "./app/utils/getPackageManager.js";
|
|
371
|
+
export { pm, pmx } from "./app/utils/getPackageManager.js";
|
|
236
372
|
export { uninstallDependencies } from "./app/utils/handlers/dependencies.js";
|
|
237
373
|
export { handleCleanup } from "./app/utils/handlers/handleCleanup.js";
|
|
238
374
|
export { handleCodemods } from "./app/utils/handlers/handleCodemods.js";
|
|
239
375
|
export { isVSCodeInstalled } from "./app/utils/handlers/isAppInstalled.js";
|
|
376
|
+
export type { ScriptStatus } from "./app/utils/handlers/promptPackageJsonScripts.js";
|
|
240
377
|
export { promptPackageJsonScripts } from "./app/utils/handlers/promptPackageJsonScripts.js";
|
|
241
|
-
export { AVAILABLE_COMPONENTS, applyTheme, getInstalledComponents, installComponent, readShadcnConfig, removeComponent, selectChartsPrompt, selectSidebarPrompt, updateComponent, } from "./app/utils/handlers/shadcn.js";
|
|
378
|
+
export { AVAILABLE_COMPONENTS, applyTheme, getInstalledComponents, installComponent, readShadcnConfig, removeComponent, selectChartsPrompt, selectSidebarPrompt, THEMES, updateComponent, } from "./app/utils/handlers/shadcn.js";
|
|
242
379
|
export { hasOnlyRse } from "./app/utils/hasOnlyRseConfig.js";
|
|
243
380
|
export { CONTENT_CREATE_MODES, DEST_FILE_EXISTS_BEHAVIOURS, FILE_TYPES, INIT_BEHAVIOURS, } from "./app/utils/init/init-const.js";
|
|
244
381
|
export { createFileFromScratch, escapeMarkdownCodeBlocks, initFile, initFiles, } from "./app/utils/init/init-impl.js";
|
|
245
|
-
export { gitignoreTemplate, licenseTemplate, readmeTemplate
|
|
382
|
+
export { gitignoreTemplate, licenseTemplate, readmeTemplate } from "./app/utils/init/init-tmpl.js";
|
|
246
383
|
export type { DestFileExistsBehaviour, FileType, InitBehaviour, InitFileOptions, InitFileRequest, InitFileResult, ReinitUserConfig, } from "./app/utils/init/init-types.js";
|
|
384
|
+
export type { InstanceGithub } from "./app/utils/instanceGithub.js";
|
|
247
385
|
export { ensureGithubToken, initGithubSDK, OctokitWithRest, octokitUserAgent, } from "./app/utils/instanceGithub.js";
|
|
386
|
+
export type { InstanceVercel } from "./app/utils/instanceVercel.js";
|
|
248
387
|
export { askVercelToken, initVercelSDK } from "./app/utils/instanceVercel.js";
|
|
249
388
|
export { getMaxHeightSize, sleep } from "./app/utils/microHelpers.js";
|
|
250
|
-
export { hasConfigFiles, isMrseProject
|
|
389
|
+
export { hasConfigFiles, isMrseProject } from "./app/utils/mrseHelpers.js";
|
|
251
390
|
export { downloadJsrDist } from "./app/utils/native-cli/nc-impl.js";
|
|
252
391
|
export { showNativeCliMenu } from "./app/utils/native-cli/nc-mod.js";
|
|
253
392
|
export { checkScriptExists } from "./app/utils/pkgJsonHelpers.js";
|
|
254
393
|
export { addDependency, addDevDependency, dedupeDependencies, ensureDependencyInstalled, installDependencies, removeDependency, runScript, updateDependencies, } from "./app/utils/pm/pm-api.js";
|
|
394
|
+
export type { CatalogStructure } from "./app/utils/pm/pm-catalog.js";
|
|
395
|
+
export { addToCatalog, getCatalogReference, getCatalogStructure, isCatalogSupported, listCatalogs, removeFromCatalog, updateCatalogs, } from "./app/utils/pm/pm-catalog.js";
|
|
255
396
|
export { detectPackageManager, packageManagers } from "./app/utils/pm/pm-detect.js";
|
|
256
397
|
export { latestVersion, PackageNotFoundError, pmPackageJson, VersionNotFoundError, } from "./app/utils/pm/pm-meta.js";
|
|
257
398
|
export { findup, parsePackageManagerField } from "./app/utils/pm/pm-parse.js";
|
|
258
399
|
export type { DetectPackageManagerOptions, OperationOptions, PackageManager, PackageManagerName, } from "./app/utils/pm/pm-types.js";
|
|
259
400
|
export { doesDependencyExist, executeCommand, getWorkspaceArgs, NO_PACKAGE_MANAGER_DETECTED_ERROR_MSG, resolveOperationOptions, } from "./app/utils/pm/pm-utils.js";
|
|
401
|
+
export type { CategoryFromSchema, CloneOrTemplateRepo, RepoFromSchema, RepoOption, } from "./app/utils/projectRepository.js";
|
|
260
402
|
export { getRepoInfo, REPO_TEMPLATES, saveRepoToDevice, TEMP_BROWSER_TEMPLATE_OPTIONS, TEMP_FULLSTACK_WEBSITE_TEMPLATE_OPTIONS, TEMP_SEPARATED_WEBSITE_TEMPLATE_OPTIONS, TEMP_VSCODE_TEMPLATE_OPTIONS, } from "./app/utils/projectRepository.js";
|
|
261
403
|
export { askAppOrLib } from "./app/utils/prompts/askAppOrLib.js";
|
|
262
404
|
export { askInstallDeps } from "./app/utils/prompts/askInstallDeps.js";
|
|
@@ -265,13 +407,19 @@ export { askProjectName } from "./app/utils/prompts/askProjectName.js";
|
|
|
265
407
|
export { askUsernameFrontend } from "./app/utils/prompts/askUsernameFrontend.js";
|
|
266
408
|
export { askUsernameGithub } from "./app/utils/prompts/askUsernameGithub.js";
|
|
267
409
|
export { shouldInitGit } from "./app/utils/prompts/shouldInitGit.js";
|
|
268
|
-
export { getOrCreateReliverseMemory, updateReliverseMemory
|
|
269
|
-
export {
|
|
410
|
+
export { getOrCreateReliverseMemory, updateReliverseMemory } from "./app/utils/reliverseMemory.js";
|
|
411
|
+
export type { ReplaceConfig } from "./app/utils/replacements/reps-impl.js";
|
|
412
|
+
export { extractRepoInfo, replaceStringsInFiles } from "./app/utils/replacements/reps-impl.js";
|
|
413
|
+
export type { Hardcoded, UrlPatterns } from "./app/utils/replacements/reps-keys.js";
|
|
270
414
|
export { CommonPatterns, HardcodedStrings, hardcodedSchema, urlPatternsSchema, } from "./app/utils/replacements/reps-keys.js";
|
|
415
|
+
export { handleReplacements } from "./app/utils/replacements/reps-mod.js";
|
|
271
416
|
export { resolveAllCrossLibs } from "./app/utils/resolve-cross-libs.js";
|
|
417
|
+
export type { EncryptedDataMemory, ReliverseMemory, UserDataMemory, } from "./app/utils/schemaMemory.js";
|
|
272
418
|
export { memorySchema } from "./app/utils/schemaMemory.js";
|
|
419
|
+
export type { RepoInfo, ReposConfig } from "./app/utils/schemaTemplate.js";
|
|
273
420
|
export { DEFAULT_REPOS_CONFIG, generateReposJsonSchema, repoInfoSchema, reposSchema, shouldRegenerateSchema, } from "./app/utils/schemaTemplate.js";
|
|
274
421
|
export { createSpinner, SimpleSpinner } from "./app/utils/spinner.js";
|
|
422
|
+
export { getPkgName, getPkgVersion } from "./app/utils/startEndPrompts.js";
|
|
275
423
|
export { cd, getCurrentWorkingDirectory, handleError, pwd, rm, } from "./app/utils/terminalHelpers.js";
|
|
276
424
|
export { setupDevModeIfNeeded } from "./app/utils/testsRuntime.js";
|
|
277
425
|
export { findTsconfigUp } from "./app/utils/tsconfigHelpers.js";
|
|
@@ -287,4 +435,4 @@ export { library_createJsrConfig, library_createPackageJSON, } from "./app/utils
|
|
|
287
435
|
export { regular_createPackageJSON } from "./app/utils/utils-package-json-regular.js";
|
|
288
436
|
export { createPerfTimer, getElapsedPerfTime, pausePerfTimer, resumePerfTimer, } from "./app/utils/utils-perf.js";
|
|
289
437
|
export { ALLOWED_FILE_TYPES, checkFileSize, checkPermissions, handleCtxError, sanitizeInput, setFileSizeLimits, validateContent, validateFileExists, validateFileType, validateMergeOperation, validatePath, validateTemplate, } from "./app/utils/utils-security.js";
|
|
290
|
-
export { createTSConfig } from "./app/utils/utils-tsconfig.js";
|
|
438
|
+
export { createProjectTSConfig, createTSConfig } from "./app/utils/utils-tsconfig.js";
|