@reliverse/dler 1.7.153 → 2.0.1
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/dist/cli.d.ts +2 -0
- package/dist/cli.js +3 -0
- package/dist/cmds/build/cmd.d.ts +2 -0
- package/dist/cmds/build/cmd.js +564 -0
- package/dist/cmds/clean/cmd.d.ts +2 -0
- package/dist/cmds/clean/cmd.js +146 -0
- package/dist/cmds/clean/impl.d.ts +2 -0
- package/dist/cmds/clean/impl.js +627 -0
- package/dist/cmds/clean/presets.d.ts +10 -0
- package/dist/cmds/clean/presets.js +112 -0
- package/dist/cmds/clean/types.d.ts +62 -0
- package/dist/cmds/init/cmd.d.ts +3 -0
- package/dist/cmds/init/cmd.js +56 -0
- package/dist/cmds/init/impl/config.d.ts +45 -0
- package/dist/cmds/init/impl/config.js +99 -0
- package/dist/cmds/init/impl/generators.d.ts +6 -0
- package/dist/cmds/init/impl/generators.js +178 -0
- package/dist/cmds/init/impl/prompts.d.ts +2 -0
- package/dist/cmds/init/impl/prompts.js +98 -0
- package/dist/cmds/init/impl/types.d.ts +22 -0
- package/dist/cmds/init/impl/utils.d.ts +4 -0
- package/dist/cmds/init/impl/utils.js +11 -0
- package/dist/cmds/init/impl/validators.d.ts +4 -0
- package/dist/cmds/init/impl/validators.js +42 -0
- package/dist/cmds/integrate/cmd.d.ts +3 -0
- package/dist/cmds/integrate/cmd.js +70 -0
- package/dist/cmds/integrate/impl.d.ts +7 -0
- package/dist/cmds/integrate/impl.js +127 -0
- package/dist/cmds/integrate/integrations/base.d.ts +13 -0
- package/dist/cmds/integrate/integrations/base.js +41 -0
- package/dist/cmds/integrate/integrations/nextjs.d.ts +16 -0
- package/dist/cmds/integrate/integrations/nextjs.js +167 -0
- package/dist/cmds/integrate/integrations/registry.d.ts +7 -0
- package/dist/cmds/integrate/integrations/registry.js +31 -0
- package/dist/cmds/integrate/integrations/ultracite.d.ts +11 -0
- package/dist/cmds/integrate/integrations/ultracite.js +40 -0
- package/dist/cmds/integrate/types.d.ts +39 -0
- package/dist/cmds/integrate/utils/biome.d.ts +4 -0
- package/dist/cmds/integrate/utils/biome.js +140 -0
- package/dist/cmds/integrate/utils/context.d.ts +3 -0
- package/dist/cmds/integrate/utils/context.js +111 -0
- package/dist/cmds/integrate/utils/temp.d.ts +3 -0
- package/dist/cmds/integrate/utils/temp.js +36 -0
- package/dist/cmds/perf/analysis/bundle.d.ts +20 -0
- package/dist/cmds/perf/analysis/bundle.js +225 -0
- package/dist/cmds/perf/analysis/filesystem.d.ts +27 -0
- package/dist/cmds/perf/analysis/filesystem.js +246 -0
- package/dist/cmds/perf/analysis/monorepo.d.ts +29 -0
- package/dist/cmds/perf/analysis/monorepo.js +307 -0
- package/dist/cmds/perf/benchmarks/command.d.ts +21 -0
- package/dist/cmds/perf/benchmarks/command.js +162 -0
- package/dist/cmds/perf/benchmarks/memory.d.ts +41 -0
- package/dist/cmds/perf/benchmarks/memory.js +169 -0
- package/dist/cmds/perf/benchmarks/runner.d.ts +22 -0
- package/dist/cmds/perf/benchmarks/runner.js +157 -0
- package/dist/cmds/perf/cmd.d.ts +2 -0
- package/dist/cmds/perf/cmd.js +238 -0
- package/dist/cmds/perf/impl.d.ts +24 -0
- package/dist/cmds/perf/impl.js +304 -0
- package/dist/cmds/perf/reporters/console.d.ts +12 -0
- package/dist/cmds/perf/reporters/console.js +257 -0
- package/dist/cmds/perf/reporters/html.d.ts +27 -0
- package/dist/cmds/perf/reporters/html.js +881 -0
- package/dist/cmds/perf/reporters/json.d.ts +9 -0
- package/dist/cmds/perf/reporters/json.js +32 -0
- package/dist/cmds/perf/types.d.ts +184 -0
- package/dist/cmds/perf/utils/cache.d.ts +23 -0
- package/dist/cmds/perf/utils/cache.js +171 -0
- package/dist/cmds/perf/utils/formatter.d.ts +17 -0
- package/dist/cmds/perf/utils/formatter.js +134 -0
- package/dist/cmds/perf/utils/stats.d.ts +15 -0
- package/dist/cmds/perf/utils/stats.js +101 -0
- package/dist/cmds/publish/cmd.d.ts +3 -0
- package/dist/cmds/publish/cmd.js +189 -0
- package/dist/cmds/shell/cmd.d.ts +3 -0
- package/dist/cmds/shell/cmd.js +50 -0
- package/dist/cmds/tsc/cache.d.ts +27 -0
- package/dist/cmds/tsc/cache.js +160 -0
- package/dist/cmds/tsc/cmd.d.ts +2 -0
- package/dist/cmds/tsc/cmd.js +111 -0
- package/dist/cmds/tsc/impl.d.ts +41 -0
- package/dist/cmds/tsc/impl.js +572 -0
- package/dist/cmds/tsc/types.d.ts +57 -0
- package/package.json +14 -145
- package/src/cli.ts +8 -0
- package/src/cmds/build/cmd.ts +582 -0
- package/src/cmds/clean/cmd.ts +166 -0
- package/src/cmds/clean/impl.ts +900 -0
- package/src/cmds/clean/presets.ts +158 -0
- package/src/cmds/clean/types.ts +71 -0
- package/src/cmds/init/cmd.ts +68 -0
- package/src/cmds/init/impl/config.ts +105 -0
- package/src/cmds/init/impl/generators.ts +220 -0
- package/src/cmds/init/impl/prompts.ts +137 -0
- package/src/cmds/init/impl/types.ts +25 -0
- package/src/cmds/init/impl/utils.ts +17 -0
- package/src/cmds/init/impl/validators.ts +55 -0
- package/src/cmds/integrate/cmd.ts +82 -0
- package/src/cmds/integrate/impl.ts +204 -0
- package/src/cmds/integrate/integrations/base.ts +69 -0
- package/src/cmds/integrate/integrations/nextjs.ts +227 -0
- package/src/cmds/integrate/integrations/registry.ts +45 -0
- package/src/cmds/integrate/integrations/ultracite.ts +53 -0
- package/src/cmds/integrate/types.ts +48 -0
- package/src/cmds/integrate/utils/biome.ts +173 -0
- package/src/cmds/integrate/utils/context.ts +148 -0
- package/src/cmds/integrate/utils/temp.ts +47 -0
- package/src/cmds/perf/analysis/bundle.ts +311 -0
- package/src/cmds/perf/analysis/filesystem.ts +324 -0
- package/src/cmds/perf/analysis/monorepo.ts +439 -0
- package/src/cmds/perf/benchmarks/command.ts +230 -0
- package/src/cmds/perf/benchmarks/memory.ts +249 -0
- package/src/cmds/perf/benchmarks/runner.ts +220 -0
- package/src/cmds/perf/cmd.ts +285 -0
- package/src/cmds/perf/impl.ts +411 -0
- package/src/cmds/perf/reporters/console.ts +331 -0
- package/src/cmds/perf/reporters/html.ts +984 -0
- package/src/cmds/perf/reporters/json.ts +42 -0
- package/src/cmds/perf/types.ts +220 -0
- package/src/cmds/perf/utils/cache.ts +234 -0
- package/src/cmds/perf/utils/formatter.ts +190 -0
- package/src/cmds/perf/utils/stats.ts +153 -0
- package/src/cmds/publish/cmd.ts +215 -0
- package/src/cmds/shell/cmd.ts +61 -0
- package/src/cmds/tsc/cache.ts +237 -0
- package/src/cmds/tsc/cmd.ts +139 -0
- package/src/cmds/tsc/impl.ts +855 -0
- package/src/cmds/tsc/types.ts +66 -0
- package/tsconfig.json +9 -0
- package/LICENSE +0 -21
- package/LICENSES +0 -22
- package/README.md +0 -36
- package/bin/impl/add/add-global/install-impl.d.ts +0 -38
- package/bin/impl/add/add-global/install-impl.js +0 -254
- package/bin/impl/add/add-local/api/orpc.d.ts +0 -1
- package/bin/impl/add/add-local/api/orpc.js +0 -4
- package/bin/impl/add/add-local/api/trpc.d.ts +0 -1
- package/bin/impl/add/add-local/api/trpc.js +0 -4
- package/bin/impl/add/add-local/auth/better-auth.d.ts +0 -1
- package/bin/impl/add/add-local/auth/better-auth.js +0 -4
- package/bin/impl/add/add-local/auth/clerk-auth.d.ts +0 -1
- package/bin/impl/add/add-local/auth/clerk-auth.js +0 -4
- package/bin/impl/add/add-local/auth/next-auth.d.ts +0 -1
- package/bin/impl/add/add-local/auth/next-auth.js +0 -4
- package/bin/impl/add/add-local/core/deps.d.ts +0 -8
- package/bin/impl/add/add-local/core/deps.js +0 -19
- package/bin/impl/add/add-local/core/prompts.d.ts +0 -4
- package/bin/impl/add/add-local/core/prompts.js +0 -12
- package/bin/impl/add/add-local/core/templates.d.ts +0 -29
- package/bin/impl/add/add-local/core/templates.js +0 -85
- package/bin/impl/add/add-local/core/types.d.ts +0 -6
- package/bin/impl/add/add-local/db/drizzle.d.ts +0 -1
- package/bin/impl/add/add-local/db/drizzle.js +0 -4
- package/bin/impl/add/add-local/db/prisma.d.ts +0 -1
- package/bin/impl/add/add-local/db/prisma.js +0 -4
- package/bin/impl/add/add-local/files/uploadthing.d.ts +0 -1
- package/bin/impl/add/add-local/files/uploadthing.js +0 -4
- package/bin/impl/add/add-local/form/react-hook-form.d.ts +0 -1
- package/bin/impl/add/add-local/form/react-hook-form.js +0 -4
- package/bin/impl/add/add-local/form/tanstack-form.d.ts +0 -1
- package/bin/impl/add/add-local/form/tanstack-form.js +0 -4
- package/bin/impl/add/add-local/fws/browser/plasmo.d.ts +0 -1
- package/bin/impl/add/add-local/fws/browser/plasmo.js +0 -4
- package/bin/impl/add/add-local/fws/browser/wxt.d.ts +0 -1
- package/bin/impl/add/add-local/fws/browser/wxt.js +0 -4
- package/bin/impl/add/add-local/fws/configs/eslint-config.d.ts +0 -1
- package/bin/impl/add/add-local/fws/configs/eslint-config.js +0 -4
- package/bin/impl/add/add-local/fws/native/lynx.d.ts +0 -1
- package/bin/impl/add/add-local/fws/native/lynx.js +0 -4
- package/bin/impl/add/add-local/fws/native/react.d.ts +0 -1
- package/bin/impl/add/add-local/fws/native/react.js +0 -4
- package/bin/impl/add/add-local/fws/plugins/eslint-plugin.d.ts +0 -1
- package/bin/impl/add/add-local/fws/plugins/eslint-plugin.js +0 -4
- package/bin/impl/add/add-local/fws/vscode/vscode-ext.d.ts +0 -1
- package/bin/impl/add/add-local/fws/vscode/vscode-ext.js +0 -4
- package/bin/impl/add/add-local/fws/web/astro.d.ts +0 -1
- package/bin/impl/add/add-local/fws/web/astro.js +0 -4
- package/bin/impl/add/add-local/fws/web/jstack.d.ts +0 -1
- package/bin/impl/add/add-local/fws/web/jstack.js +0 -4
- package/bin/impl/add/add-local/fws/web/next.d.ts +0 -1
- package/bin/impl/add/add-local/fws/web/next.js +0 -4
- package/bin/impl/add/add-local/fws/web/start.d.ts +0 -1
- package/bin/impl/add/add-local/fws/web/start.js +0 -4
- package/bin/impl/add/add-local/fws/web/vite.d.ts +0 -1
- package/bin/impl/add/add-local/fws/web/vite.js +0 -4
- package/bin/impl/add/add-local/i18n/gt-libs.d.ts +0 -1
- package/bin/impl/add/add-local/i18n/gt-libs.js +0 -4
- package/bin/impl/add/add-local/i18n/languine.d.ts +0 -1
- package/bin/impl/add/add-local/i18n/languine.js +0 -19
- package/bin/impl/add/add-local/i18n/next-intl.d.ts +0 -1
- package/bin/impl/add/add-local/i18n/next-intl.js +0 -4
- package/bin/impl/add/add-local/llm/vercel.d.ts +0 -1
- package/bin/impl/add/add-local/llm/vercel.js +0 -4
- package/bin/impl/add/add-local/mail/resend.d.ts +0 -1
- package/bin/impl/add/add-local/mail/resend.js +0 -4
- package/bin/impl/add/add-local/pay/polar.d.ts +0 -1
- package/bin/impl/add/add-local/pay/polar.js +0 -4
- package/bin/impl/add/add-local/pay/stripe.d.ts +0 -1
- package/bin/impl/add/add-local/pay/stripe.js +0 -4
- package/bin/impl/add/add-local/tool/biome.d.ts +0 -1
- package/bin/impl/add/add-local/tool/biome.js +0 -4
- package/bin/impl/add/add-local/tool/eslint.d.ts +0 -1
- package/bin/impl/add/add-local/tool/eslint.js +0 -4
- package/bin/impl/add/add-local/tool/oxlint.d.ts +0 -4
- package/bin/impl/add/add-local/tool/oxlint.js +0 -4
- package/bin/impl/add/add-local/ui/21st.d.ts +0 -4
- package/bin/impl/add/add-local/ui/21st.js +0 -4
- package/bin/impl/add/add-local/ui/shadcn.d.ts +0 -1
- package/bin/impl/add/add-local/ui/shadcn.js +0 -4
- package/bin/impl/add/add-local/ui/tailwind.d.ts +0 -1
- package/bin/impl/add/add-local/ui/tailwind.js +0 -4
- package/bin/impl/add/add-rule/add-rule-const.d.ts +0 -11
- package/bin/impl/add/add-rule/add-rule-const.js +0 -32
- package/bin/impl/add/add-rule/add-rule-impl.d.ts +0 -21
- package/bin/impl/add/add-rule/add-rule-impl.js +0 -300
- package/bin/impl/add/add-rule/add-rule-types.d.ts +0 -18
- package/bin/impl/add/add-rule/add-rule-types.js +0 -0
- package/bin/impl/add/add-rule/add-rule-utils.d.ts +0 -61
- package/bin/impl/add/add-rule/add-rule-utils.js +0 -324
- package/bin/impl/ai/ai-impl/ai-auth.d.ts +0 -10
- package/bin/impl/ai/ai-impl/ai-auth.js +0 -59
- package/bin/impl/ai/ai-impl/ai-chat.d.ts +0 -5
- package/bin/impl/ai/ai-impl/ai-chat.js +0 -93
- package/bin/impl/ai/ai-impl/ai-const.d.ts +0 -7
- package/bin/impl/ai/ai-impl/ai-const.js +0 -14
- package/bin/impl/ai/ai-impl/ai-tools.d.ts +0 -5
- package/bin/impl/ai/ai-impl/ai-tools.js +0 -32
- package/bin/impl/ai/ai-impl/ai-types.d.ts +0 -12
- package/bin/impl/ai/ai-impl/ai-types.js +0 -0
- package/bin/impl/ai/ai-impl/code/code-mod.d.ts +0 -6
- package/bin/impl/ai/ai-impl/code/code-mod.js +0 -164
- package/bin/impl/ai/ai-impl/mcp/mcp-mod.d.ts +0 -5
- package/bin/impl/ai/ai-impl/mcp/mcp-mod.js +0 -125
- package/bin/impl/ai/ai-impl/relinter/relinter.d.ts +0 -27
- package/bin/impl/ai/ai-impl/relinter/relinter.js +0 -309
- package/bin/impl/ai/ai-menu.d.ts +0 -3
- package/bin/impl/ai/ai-menu.js +0 -40
- package/bin/impl/auth/consts.d.ts +0 -2
- package/bin/impl/auth/consts.js +0 -2
- package/bin/impl/auth/generators/auth-config.d.ts +0 -32
- package/bin/impl/auth/generators/auth-config.js +0 -533
- package/bin/impl/auth/generators/drizzle.d.ts +0 -3
- package/bin/impl/auth/generators/drizzle.js +0 -137
- package/bin/impl/auth/generators/index.d.ts +0 -16
- package/bin/impl/auth/generators/index.js +0 -18
- package/bin/impl/auth/generators/kysely.d.ts +0 -2
- package/bin/impl/auth/generators/kysely.js +0 -9
- package/bin/impl/auth/generators/prisma.d.ts +0 -2
- package/bin/impl/auth/generators/prisma.js +0 -154
- package/bin/impl/auth/generators/types.d.ts +0 -11
- package/bin/impl/auth/impl/init.d.ts +0 -183
- package/bin/impl/auth/impl/init.js +0 -367
- package/bin/impl/auth/impl/migrate.d.ts +0 -6
- package/bin/impl/auth/impl/migrate.js +0 -90
- package/bin/impl/auth/impl/types.d.ts +0 -12
- package/bin/impl/auth/utils/add-svelte-kit-env-modules.d.ts +0 -3
- package/bin/impl/auth/utils/add-svelte-kit-env-modules.js +0 -91
- package/bin/impl/auth/utils/check-package-managers.d.ts +0 -4
- package/bin/impl/auth/utils/check-package-managers.js +0 -20
- package/bin/impl/auth/utils/format-ms.d.ts +0 -4
- package/bin/impl/auth/utils/format-ms.js +0 -11
- package/bin/impl/auth/utils/generate-secret.d.ts +0 -1
- package/bin/impl/auth/utils/generate-secret.js +0 -2
- package/bin/impl/auth/utils/get-config.d.ts +0 -8
- package/bin/impl/auth/utils/get-config.js +0 -169
- package/bin/impl/auth/utils/get-package-info.d.ts +0 -1
- package/bin/impl/auth/utils/get-package-info.js +0 -6
- package/bin/impl/auth/utils/get-tsconfig-info.d.ts +0 -2
- package/bin/impl/auth/utils/get-tsconfig-info.js +0 -15
- package/bin/impl/auth/utils/install-dependencies.d.ts +0 -5
- package/bin/impl/auth/utils/install-dependencies.js +0 -34
- package/bin/impl/build/binary-flow.d.ts +0 -6
- package/bin/impl/build/binary-flow.js +0 -173
- package/bin/impl/build/build-library.d.ts +0 -42
- package/bin/impl/build/build-library.js +0 -626
- package/bin/impl/build/build-regular.d.ts +0 -20
- package/bin/impl/build/build-regular.js +0 -398
- package/bin/impl/build/impl.d.ts +0 -25
- package/bin/impl/build/impl.js +0 -264
- package/bin/impl/build/library-flow.d.ts +0 -26
- package/bin/impl/build/library-flow.js +0 -252
- package/bin/impl/build/postbuild.d.ts +0 -3
- package/bin/impl/build/postbuild.js +0 -173
- package/bin/impl/build/ppb-utils.d.ts +0 -16
- package/bin/impl/build/ppb-utils.js +0 -99
- package/bin/impl/build/prebuild.d.ts +0 -2
- package/bin/impl/build/prebuild.js +0 -108
- package/bin/impl/build/providers/auto.d.ts +0 -3
- package/bin/impl/build/providers/auto.js +0 -105
- package/bin/impl/build/providers/build.d.ts +0 -8
- package/bin/impl/build/providers/build.js +0 -351
- package/bin/impl/build/providers/bun/bun-build.d.ts +0 -0
- package/bin/impl/build/providers/bun/bun-build.js +0 -0
- package/bin/impl/build/providers/bun/single-file.d.ts +0 -25
- package/bin/impl/build/providers/bun/single-file.js +0 -146
- package/bin/impl/build/providers/copy/copy-mod.d.ts +0 -2
- package/bin/impl/build/providers/copy/copy-mod.js +0 -49
- package/bin/impl/build/providers/mkdist/mkdist-impl/loader.d.ts +0 -4
- package/bin/impl/build/providers/mkdist/mkdist-impl/loader.js +0 -26
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/js.d.ts +0 -2
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/js.js +0 -50
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/loaders-mod.d.ts +0 -12
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/loaders-mod.js +0 -30
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/postcss.d.ts +0 -3
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/postcss.js +0 -28
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/sass.d.ts +0 -2
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/sass.js +0 -31
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/vue.d.ts +0 -17
- package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/vue.js +0 -145
- package/bin/impl/build/providers/mkdist/mkdist-impl/make.d.ts +0 -11
- package/bin/impl/build/providers/mkdist/mkdist-impl/make.js +0 -192
- package/bin/impl/build/providers/mkdist/mkdist-impl/utils/dts.d.ts +0 -11
- package/bin/impl/build/providers/mkdist/mkdist-impl/utils/dts.js +0 -94
- package/bin/impl/build/providers/mkdist/mkdist-impl/utils/fs.d.ts +0 -1
- package/bin/impl/build/providers/mkdist/mkdist-impl/utils/fs.js +0 -15
- package/bin/impl/build/providers/mkdist/mkdist-impl/utils/vue-dts.d.ts +0 -3
- package/bin/impl/build/providers/mkdist/mkdist-impl/utils/vue-dts.js +0 -175
- package/bin/impl/build/providers/mkdist/mkdist-mod.d.ts +0 -2
- package/bin/impl/build/providers/mkdist/mkdist-mod.js +0 -92
- package/bin/impl/build/providers/rollup/build.d.ts +0 -2
- package/bin/impl/build/providers/rollup/build.js +0 -100
- package/bin/impl/build/providers/rollup/config.d.ts +0 -2
- package/bin/impl/build/providers/rollup/config.js +0 -112
- package/bin/impl/build/providers/rollup/plugins/cjs.d.ts +0 -4
- package/bin/impl/build/providers/rollup/plugins/cjs.js +0 -47
- package/bin/impl/build/providers/rollup/plugins/esbuild.d.ts +0 -3
- package/bin/impl/build/providers/rollup/plugins/esbuild.js +0 -91
- package/bin/impl/build/providers/rollup/plugins/json.d.ts +0 -3
- package/bin/impl/build/providers/rollup/plugins/json.js +0 -17
- package/bin/impl/build/providers/rollup/plugins/raw.d.ts +0 -8
- package/bin/impl/build/providers/rollup/plugins/raw.js +0 -20
- package/bin/impl/build/providers/rollup/plugins/shebang.d.ts +0 -5
- package/bin/impl/build/providers/rollup/plugins/shebang.js +0 -42
- package/bin/impl/build/providers/rollup/stub.d.ts +0 -2
- package/bin/impl/build/providers/rollup/stub.js +0 -125
- package/bin/impl/build/providers/rollup/utils.d.ts +0 -5
- package/bin/impl/build/providers/rollup/utils.js +0 -38
- package/bin/impl/build/providers/rollup/watch.d.ts +0 -2
- package/bin/impl/build/providers/rollup/watch.js +0 -30
- package/bin/impl/build/providers/untyped/untyped-mod.d.ts +0 -2
- package/bin/impl/build/providers/untyped/untyped-mod.js +0 -111
- package/bin/impl/build/providers/utils.d.ts +0 -19
- package/bin/impl/build/providers/utils.js +0 -148
- package/bin/impl/build/providers/validate.d.ts +0 -4
- package/bin/impl/build/providers/validate.js +0 -52
- package/bin/impl/build/regular-flow.d.ts +0 -10
- package/bin/impl/build/regular-flow.js +0 -246
- package/bin/impl/clone/firecrawl/firecrawl-mod.d.ts +0 -1
- package/bin/impl/clone/firecrawl/firecrawl-mod.js +0 -11
- package/bin/impl/cmod/cmod-impl.d.ts +0 -9
- package/bin/impl/cmod/cmod-impl.js +0 -21
- package/bin/impl/config/biome.d.ts +0 -2
- package/bin/impl/config/biome.js +0 -34
- package/bin/impl/config/comments.d.ts +0 -1
- package/bin/impl/config/comments.js +0 -57
- package/bin/impl/config/constants.d.ts +0 -45
- package/bin/impl/config/constants.js +0 -60
- package/bin/impl/config/content.d.ts +0 -14
- package/bin/impl/config/content.js +0 -15
- package/bin/impl/config/core.d.ts +0 -14
- package/bin/impl/config/core.js +0 -79
- package/bin/impl/config/create.d.ts +0 -35
- package/bin/impl/config/create.js +0 -274
- package/bin/impl/config/def-utils.d.ts +0 -6
- package/bin/impl/config/def-utils.js +0 -227
- package/bin/impl/config/detect.d.ts +0 -24
- package/bin/impl/config/detect.js +0 -371
- package/bin/impl/config/gen-cfg.d.ts +0 -3
- package/bin/impl/config/gen-cfg.js +0 -180
- package/bin/impl/config/load.d.ts +0 -15
- package/bin/impl/config/load.js +0 -87
- package/bin/impl/config/migrate.d.ts +0 -5
- package/bin/impl/config/migrate.js +0 -60
- package/bin/impl/config/path.d.ts +0 -11
- package/bin/impl/config/path.js +0 -28
- package/bin/impl/config/prepare.d.ts +0 -3
- package/bin/impl/config/prepare.js +0 -832
- package/bin/impl/config/prompts.d.ts +0 -5
- package/bin/impl/config/prompts.js +0 -12
- package/bin/impl/config/read.d.ts +0 -11
- package/bin/impl/config/read.js +0 -62
- package/bin/impl/config/repair.d.ts +0 -15
- package/bin/impl/config/repair.js +0 -101
- package/bin/impl/config/unstable.d.ts +0 -11
- package/bin/impl/config/unstable.js +0 -29
- package/bin/impl/config/update.d.ts +0 -10
- package/bin/impl/config/update.js +0 -145
- package/bin/impl/config/utils.d.ts +0 -17
- package/bin/impl/config/utils.js +0 -85
- package/bin/impl/conv/mod.d.ts +0 -26
- package/bin/impl/conv/mod.js +0 -193
- package/bin/impl/db/client.d.ts +0 -4
- package/bin/impl/db/client.js +0 -32
- package/bin/impl/db/config.d.ts +0 -2
- package/bin/impl/db/config.js +0 -59
- package/bin/impl/db/messages.d.ts +0 -13
- package/bin/impl/db/messages.js +0 -81
- package/bin/impl/db/schema.d.ts +0 -90
- package/bin/impl/db/schema.js +0 -9
- package/bin/impl/env/env-impl.d.ts +0 -1
- package/bin/impl/env/env-impl.js +0 -28
- package/bin/impl/get/get-core.d.ts +0 -3
- package/bin/impl/get/get-core.js +0 -453
- package/bin/impl/init/init-utils/init-impl.d.ts +0 -6
- package/bin/impl/init/init-utils/init-impl.js +0 -31
- package/bin/impl/init/init-utils/init-utils.d.ts +0 -35
- package/bin/impl/init/init-utils/init-utils.js +0 -255
- package/bin/impl/init/init-utils/mm-deprecated/editor-menu.d.ts +0 -4
- package/bin/impl/init/init-utils/mm-deprecated/editor-menu.js +0 -400
- package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleConstants.d.ts +0 -2
- package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleConstants.js +0 -36
- package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleSchema.d.ts +0 -1
- package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleSchema.js +0 -81
- package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleSchemaUtils.d.ts +0 -16
- package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleSchemaUtils.js +0 -474
- package/bin/impl/init/mm-deprecated/editor-impl.d.ts +0 -1
- package/bin/impl/init/mm-deprecated/editor-impl.js +0 -153
- package/bin/impl/init/mm-deprecated/editor-mod.d.ts +0 -18
- package/bin/impl/init/mm-deprecated/editor-mod.js +0 -184
- package/bin/impl/init/mm-deprecated/feature-add.d.ts +0 -2
- package/bin/impl/init/mm-deprecated/feature-add.js +0 -591
- package/bin/impl/init/mm-deprecated/feature-rm.d.ts +0 -2
- package/bin/impl/init/mm-deprecated/feature-rm.js +0 -98
- package/bin/impl/init/mm-deprecated/shadcn/shadcn-mod.d.ts +0 -1
- package/bin/impl/init/mm-deprecated/shadcn/shadcn-mod.js +0 -87
- package/bin/impl/init/use-template/cp-impl.d.ts +0 -39
- package/bin/impl/init/use-template/cp-impl.js +0 -286
- package/bin/impl/init/use-template/cp-mod.d.ts +0 -31
- package/bin/impl/init/use-template/cp-mod.js +0 -233
- package/bin/impl/init/use-template/cp-modules/cli-main-modules/cli-menu-items/showCloneProjectMenu.d.ts +0 -11
- package/bin/impl/init/use-template/cp-modules/cli-main-modules/cli-menu-items/showCloneProjectMenu.js +0 -206
- package/bin/impl/init/use-template/cp-modules/cli-main-modules/modules/showAnykeyPrompt.d.ts +0 -1
- package/bin/impl/init/use-template/cp-modules/cli-main-modules/modules/showAnykeyPrompt.js +0 -9
- package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-impl.d.ts +0 -16
- package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-impl.js +0 -400
- package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-keys.d.ts +0 -17
- package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-keys.js +0 -142
- package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-mod.d.ts +0 -2
- package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-mod.js +0 -167
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/deploy.d.ts +0 -12
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/deploy.js +0 -91
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/gdp-mod.d.ts +0 -55
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/gdp-mod.js +0 -449
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/git.d.ts +0 -51
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/git.js +0 -311
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/github.d.ts +0 -8
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/github.js +0 -113
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/domainHelpers.d.ts +0 -1
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/domainHelpers.js +0 -25
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/handlePkgJsonScripts.d.ts +0 -1
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/handlePkgJsonScripts.js +0 -52
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/promptForDomain.d.ts +0 -4
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/promptForDomain.js +0 -39
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-git-github.d.ts +0 -8
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-git-github.js +0 -75
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-private-repo.d.ts +0 -12
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-private-repo.js +0 -168
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-repo-exists.d.ts +0 -10
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-repo-exists.js +0 -62
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-api.d.ts +0 -10
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-api.js +0 -36
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-check.d.ts +0 -14
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-check.js +0 -29
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-config.d.ts +0 -27
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-config.js +0 -104
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-create.d.ts +0 -17
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-create.js +0 -129
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-deploy.d.ts +0 -20
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-deploy.js +0 -151
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-domain.d.ts +0 -5
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-domain.js +0 -44
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-env.d.ts +0 -3
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-env.js +0 -58
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-team.d.ts +0 -15
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-team.js +0 -74
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-types.d.ts +0 -28
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-types.js +0 -0
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-utils.d.ts +0 -26
- package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-utils.js +0 -134
- package/bin/impl/inject/inject-impl-mod.d.ts +0 -112
- package/bin/impl/inject/inject-impl-mod.js +0 -716
- package/bin/impl/invoke/mod.d.ts +0 -59
- package/bin/impl/invoke/mod.js +0 -353
- package/bin/impl/login/login-impl.d.ts +0 -6
- package/bin/impl/login/login-impl.js +0 -179
- package/bin/impl/logout/logout-impl.d.ts +0 -1
- package/bin/impl/logout/logout-impl.js +0 -20
- package/bin/impl/magic/magic-apply.d.ts +0 -88
- package/bin/impl/magic/magic-apply.js +0 -669
- package/bin/impl/magic/magic-spells.d.ts +0 -46
- package/bin/impl/magic/magic-spells.js +0 -144
- package/bin/impl/merge/mod.d.ts +0 -8
- package/bin/impl/merge/mod.js +0 -160
- package/bin/impl/monorepo/cache-mod.d.ts +0 -29
- package/bin/impl/monorepo/cache-mod.js +0 -61
- package/bin/impl/monorepo/commands-mod.d.ts +0 -24
- package/bin/impl/monorepo/commands-mod.js +0 -159
- package/bin/impl/monorepo/graph-mod.d.ts +0 -29
- package/bin/impl/monorepo/graph-mod.js +0 -106
- package/bin/impl/monorepo/mod.d.ts +0 -5
- package/bin/impl/monorepo/mod.js +0 -5
- package/bin/impl/monorepo/monorepo-mod.d.ts +0 -26
- package/bin/impl/monorepo/monorepo-mod.js +0 -152
- package/bin/impl/mrse/mrse-impl.d.ts +0 -53
- package/bin/impl/mrse/mrse-impl.js +0 -132
- package/bin/impl/pack/mod.d.ts +0 -43
- package/bin/impl/pack/mod.js +0 -200
- package/bin/impl/providers/better-t-stack/better-t-stack-mod.d.ts +0 -14
- package/bin/impl/providers/better-t-stack/better-t-stack-mod.js +0 -35
- package/bin/impl/providers/better-t-stack/better-t-stack-types.d.ts +0 -21
- package/bin/impl/providers/better-t-stack/better-t-stack-types.js +0 -0
- package/bin/impl/providers/better-t-stack/constants.d.ts +0 -61
- package/bin/impl/providers/better-t-stack/constants.js +0 -81
- package/bin/impl/providers/better-t-stack/helpers/database-providers/mongodb-atlas-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/database-providers/mongodb-atlas-setup.js +0 -133
- package/bin/impl/providers/better-t-stack/helpers/database-providers/neon-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/database-providers/neon-setup.js +0 -168
- package/bin/impl/providers/better-t-stack/helpers/database-providers/prisma-postgres-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/database-providers/prisma-postgres-setup.js +0 -161
- package/bin/impl/providers/better-t-stack/helpers/database-providers/supabase-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/database-providers/supabase-setup.js +0 -162
- package/bin/impl/providers/better-t-stack/helpers/database-providers/turso-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/database-providers/turso-setup.js +0 -250
- package/bin/impl/providers/better-t-stack/helpers/project-generation/create-project.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/project-generation/create-project.js +0 -82
- package/bin/impl/providers/better-t-stack/helpers/project-generation/create-readme.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/project-generation/create-readme.js +0 -245
- package/bin/impl/providers/better-t-stack/helpers/project-generation/env-setup.d.ts +0 -8
- package/bin/impl/providers/better-t-stack/helpers/project-generation/env-setup.js +0 -193
- package/bin/impl/providers/better-t-stack/helpers/project-generation/install-dependencies.d.ts +0 -6
- package/bin/impl/providers/better-t-stack/helpers/project-generation/install-dependencies.js +0 -25
- package/bin/impl/providers/better-t-stack/helpers/project-generation/post-installation.d.ts +0 -4
- package/bin/impl/providers/better-t-stack/helpers/project-generation/post-installation.js +0 -228
- package/bin/impl/providers/better-t-stack/helpers/project-generation/project-config.d.ts +0 -3
- package/bin/impl/providers/better-t-stack/helpers/project-generation/project-config.js +0 -224
- package/bin/impl/providers/better-t-stack/helpers/project-generation/template-manager.d.ts +0 -9
- package/bin/impl/providers/better-t-stack/helpers/project-generation/template-manager.js +0 -484
- package/bin/impl/providers/better-t-stack/helpers/setup/addons-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/setup/addons-setup.js +0 -99
- package/bin/impl/providers/better-t-stack/helpers/setup/api-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/setup/api-setup.js +0 -236
- package/bin/impl/providers/better-t-stack/helpers/setup/auth-setup.d.ts +0 -3
- package/bin/impl/providers/better-t-stack/helpers/setup/auth-setup.js +0 -67
- package/bin/impl/providers/better-t-stack/helpers/setup/backend-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/setup/backend-setup.js +0 -52
- package/bin/impl/providers/better-t-stack/helpers/setup/db-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/setup/db-setup.js +0 -84
- package/bin/impl/providers/better-t-stack/helpers/setup/examples-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/setup/examples-setup.js +0 -38
- package/bin/impl/providers/better-t-stack/helpers/setup/runtime-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/setup/runtime-setup.js +0 -79
- package/bin/impl/providers/better-t-stack/helpers/setup/starlight-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/setup/starlight-setup.js +0 -41
- package/bin/impl/providers/better-t-stack/helpers/setup/tauri-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/helpers/setup/tauri-setup.js +0 -67
- package/bin/impl/providers/better-t-stack/packed/addons.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/addons.js +0 -263
- package/bin/impl/providers/better-t-stack/packed/api.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/api.js +0 -678
- package/bin/impl/providers/better-t-stack/packed/auth.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/auth.js +0 -4277
- package/bin/impl/providers/better-t-stack/packed/backend.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/backend.js +0 -996
- package/bin/impl/providers/better-t-stack/packed/base.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/base.js +0 -32
- package/bin/impl/providers/better-t-stack/packed/binaries/01dad80fc2.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/0ba5eb8b0a.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/19b53640a9.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/206a875d5d.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/2dc8b34485.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/3f71f5a845.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/6eda863d14.ico +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/70aadde45a.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/9ecfcc8f0e.ico +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/9fc7a0c84f.ico +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/b72f6b7339.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/cb25ca74dd.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/dee83fc2fb.png +0 -0
- package/bin/impl/providers/better-t-stack/packed/binaries/eda53e30fe.svg +0 -6
- package/bin/impl/providers/better-t-stack/packed/db.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/db.js +0 -329
- package/bin/impl/providers/better-t-stack/packed/examples.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/examples.js +0 -3470
- package/bin/impl/providers/better-t-stack/packed/extras.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/extras.js +0 -33
- package/bin/impl/providers/better-t-stack/packed/frontend.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/frontend.js +0 -6116
- package/bin/impl/providers/better-t-stack/packed/runtime.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/packed/runtime.js +0 -35
- package/bin/impl/providers/better-t-stack/prompts/addons.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/addons.js +0 -62
- package/bin/impl/providers/better-t-stack/prompts/api.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/api.js +0 -52
- package/bin/impl/providers/better-t-stack/prompts/auth.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/auth.js +0 -19
- package/bin/impl/providers/better-t-stack/prompts/backend.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/backend.js +0 -60
- package/bin/impl/providers/better-t-stack/prompts/config-prompts.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/config-prompts.js +0 -88
- package/bin/impl/providers/better-t-stack/prompts/database-setup.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/database-setup.js +0 -67
- package/bin/impl/providers/better-t-stack/prompts/database.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/database.js +0 -48
- package/bin/impl/providers/better-t-stack/prompts/examples.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/examples.js +0 -44
- package/bin/impl/providers/better-t-stack/prompts/frontend.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/frontend.js +0 -107
- package/bin/impl/providers/better-t-stack/prompts/git.d.ts +0 -1
- package/bin/impl/providers/better-t-stack/prompts/git.js +0 -15
- package/bin/impl/providers/better-t-stack/prompts/install.d.ts +0 -1
- package/bin/impl/providers/better-t-stack/prompts/install.js +0 -15
- package/bin/impl/providers/better-t-stack/prompts/orm.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/orm.js +0 -43
- package/bin/impl/providers/better-t-stack/prompts/package-manager.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/package-manager.js +0 -29
- package/bin/impl/providers/better-t-stack/prompts/project-name.d.ts +0 -1
- package/bin/impl/providers/better-t-stack/prompts/project-name.js +0 -62
- package/bin/impl/providers/better-t-stack/prompts/runtime.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/prompts/runtime.js +0 -41
- package/bin/impl/providers/better-t-stack/types.d.ts +0 -124
- package/bin/impl/providers/better-t-stack/types.js +0 -29
- package/bin/impl/providers/better-t-stack/utils/add-package-deps.d.ts +0 -6
- package/bin/impl/providers/better-t-stack/utils/add-package-deps.js +0 -31
- package/bin/impl/providers/better-t-stack/utils/analytics.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/utils/analytics.js +0 -32
- package/bin/impl/providers/better-t-stack/utils/command-exists.d.ts +0 -1
- package/bin/impl/providers/better-t-stack/utils/command-exists.js +0 -14
- package/bin/impl/providers/better-t-stack/utils/display-config.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/utils/display-config.js +0 -59
- package/bin/impl/providers/better-t-stack/utils/generate-reproducible-command.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/utils/generate-reproducible-command.js +0 -39
- package/bin/impl/providers/better-t-stack/utils/get-latest-cli-version.d.ts +0 -1
- package/bin/impl/providers/better-t-stack/utils/get-latest-cli-version.js +0 -8
- package/bin/impl/providers/better-t-stack/utils/get-package-execution-command.d.ts +0 -10
- package/bin/impl/providers/better-t-stack/utils/get-package-execution-command.js +0 -10
- package/bin/impl/providers/better-t-stack/utils/get-package-manager.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/utils/get-package-manager.js +0 -10
- package/bin/impl/providers/better-t-stack/utils/open-url.d.ts +0 -1
- package/bin/impl/providers/better-t-stack/utils/open-url.js +0 -22
- package/bin/impl/providers/better-t-stack/utils/render-title.d.ts +0 -2
- package/bin/impl/providers/better-t-stack/utils/render-title.js +0 -43
- package/bin/impl/providers/better-t-stack/utils/sponsors.d.ts +0 -16
- package/bin/impl/providers/better-t-stack/utils/sponsors.js +0 -37
- package/bin/impl/providers/better-t-stack/utils/template-processor.d.ts +0 -8
- package/bin/impl/providers/better-t-stack/utils/template-processor.js +0 -23
- package/bin/impl/providers/better-t-stack/validation.d.ts +0 -4
- package/bin/impl/providers/better-t-stack/validation.js +0 -436
- package/bin/impl/providers/package.json +0 -3
- package/bin/impl/providers/reliverse-stack/reliverse-stack-mod.d.ts +0 -6
- package/bin/impl/providers/reliverse-stack/reliverse-stack-mod.js +0 -146
- package/bin/impl/providers/reliverse-stack/rs-impl.d.ts +0 -37
- package/bin/impl/providers/reliverse-stack/rs-impl.js +0 -367
- package/bin/impl/pub/impl.d.ts +0 -13
- package/bin/impl/pub/impl.js +0 -261
- package/bin/impl/pub/pub-library.d.ts +0 -5
- package/bin/impl/pub/pub-library.js +0 -149
- package/bin/impl/pub/pub-regular.d.ts +0 -9
- package/bin/impl/pub/pub-regular.js +0 -87
- package/bin/impl/remdn/mod.d.ts +0 -45
- package/bin/impl/remdn/mod.js +0 -648
- package/bin/impl/rempts/cmd.d.ts +0 -18
- package/bin/impl/rempts/cmd.js +0 -260
- package/bin/impl/rules/reliverse/dler-config-health/dler-config-health.d.ts +0 -2
- package/bin/impl/rules/reliverse/dler-config-health/dler-config-health.js +0 -37
- package/bin/impl/rules/reliverse/file-extensions/file-extensions.d.ts +0 -2
- package/bin/impl/rules/reliverse/file-extensions/file-extensions.js +0 -62
- package/bin/impl/rules/reliverse/missing-deps/analyzer.d.ts +0 -2
- package/bin/impl/rules/reliverse/missing-deps/analyzer.js +0 -49
- package/bin/impl/rules/reliverse/missing-deps/deps-mod.d.ts +0 -2
- package/bin/impl/rules/reliverse/missing-deps/deps-mod.js +0 -57
- package/bin/impl/rules/reliverse/missing-deps/deps-types.d.ts +0 -28
- package/bin/impl/rules/reliverse/missing-deps/deps-types.js +0 -0
- package/bin/impl/rules/reliverse/missing-deps/filesystem.d.ts +0 -4
- package/bin/impl/rules/reliverse/missing-deps/filesystem.js +0 -39
- package/bin/impl/rules/reliverse/missing-deps/formatter.d.ts +0 -2
- package/bin/impl/rules/reliverse/missing-deps/formatter.js +0 -101
- package/bin/impl/rules/reliverse/missing-deps/parser.d.ts +0 -5
- package/bin/impl/rules/reliverse/missing-deps/parser.js +0 -57
- package/bin/impl/rules/reliverse/no-dynamic-imports/no-dynamic-imports.d.ts +0 -7
- package/bin/impl/rules/reliverse/no-dynamic-imports/no-dynamic-imports.js +0 -89
- package/bin/impl/rules/reliverse/no-index-files/no-index-files.d.ts +0 -2
- package/bin/impl/rules/reliverse/no-index-files/no-index-files.js +0 -31
- package/bin/impl/rules/reliverse/package-json-health/package-json-health.d.ts +0 -2
- package/bin/impl/rules/reliverse/package-json-health/package-json-health.js +0 -61
- package/bin/impl/rules/reliverse/path-extensions/path-extensions.d.ts +0 -2
- package/bin/impl/rules/reliverse/path-extensions/path-extensions.js +0 -87
- package/bin/impl/rules/reliverse/self-include/self-include.d.ts +0 -2
- package/bin/impl/rules/reliverse/self-include/self-include.js +0 -93
- package/bin/impl/rules/reliverse/tsconfig-health/tsconfig-health.d.ts +0 -2
- package/bin/impl/rules/reliverse/tsconfig-health/tsconfig-health.js +0 -35
- package/bin/impl/rules/rules-consts.d.ts +0 -29
- package/bin/impl/rules/rules-consts.js +0 -48
- package/bin/impl/rules/rules-mod.d.ts +0 -2
- package/bin/impl/rules/rules-mod.js +0 -87
- package/bin/impl/rules/rules-utils.d.ts +0 -4
- package/bin/impl/rules/rules-utils.js +0 -49
- package/bin/impl/schema/gen.d.ts +0 -3
- package/bin/impl/schema/gen.js +0 -1493
- package/bin/impl/schema/mod.d.ts +0 -1469
- package/bin/impl/schema/mod.js +0 -366
- package/bin/impl/schema/utils.d.ts +0 -17
- package/bin/impl/schema/utils.js +0 -86
- package/bin/impl/split/impl.d.ts +0 -18
- package/bin/impl/split/impl.js +0 -89
- package/bin/impl/toolbox/toolbox-impl.d.ts +0 -5
- package/bin/impl/toolbox/toolbox-impl.js +0 -78
- package/bin/impl/toolbox/toolbox-vercel.d.ts +0 -6
- package/bin/impl/toolbox/toolbox-vercel.js +0 -97
- package/bin/impl/transform/transform-impl-mod.d.ts +0 -117
- package/bin/impl/transform/transform-impl-mod.js +0 -172
- package/bin/impl/types/mod.d.ts +0 -634
- package/bin/impl/types/mod.js +0 -0
- package/bin/impl/update/impl.d.ts +0 -21
- package/bin/impl/update/impl.js +0 -142
- package/bin/impl/update/utils.d.ts +0 -87
- package/bin/impl/update/utils.js +0 -448
- package/bin/impl/upload/providers/providers-mod.d.ts +0 -20
- package/bin/impl/upload/providers/providers-mod.js +0 -40
- package/bin/impl/upload/providers/uploadcare.d.ts +0 -13
- package/bin/impl/upload/providers/uploadcare.js +0 -26
- package/bin/impl/upload/providers/uploadthing.d.ts +0 -11
- package/bin/impl/upload/providers/uploadthing.js +0 -31
- package/bin/impl/upload/upload-utils.d.ts +0 -1
- package/bin/impl/upload/upload-utils.js +0 -7
- package/bin/impl/utils/agg/agg-1.d.ts +0 -1
- package/bin/impl/utils/agg/agg-1.js +0 -196
- package/bin/impl/utils/agg/agg-2.d.ts +0 -35
- package/bin/impl/utils/agg/agg-2.js +0 -148
- package/bin/impl/utils/agg/agg-3.d.ts +0 -41
- package/bin/impl/utils/agg/agg-3.js +0 -197
- package/bin/impl/utils/agg/agg-4.d.ts +0 -8
- package/bin/impl/utils/agg/agg-4.js +0 -26
- package/bin/impl/utils/agg/agg-5.d.ts +0 -4
- package/bin/impl/utils/agg/agg-5.js +0 -10
- package/bin/impl/utils/b-exts.d.ts +0 -5
- package/bin/impl/utils/b-exts.js +0 -406
- package/bin/impl/utils/badgeNotifiers.d.ts +0 -2
- package/bin/impl/utils/badgeNotifiers.js +0 -3
- package/bin/impl/utils/binary.d.ts +0 -4
- package/bin/impl/utils/binary.js +0 -11
- package/bin/impl/utils/codemods/convertCjsToEsm.d.ts +0 -1
- package/bin/impl/utils/codemods/convertCjsToEsm.js +0 -27
- package/bin/impl/utils/codemods/convertDatabase.d.ts +0 -2
- package/bin/impl/utils/codemods/convertDatabase.js +0 -229
- package/bin/impl/utils/codemods/convertDefinitions.d.ts +0 -1
- package/bin/impl/utils/codemods/convertDefinitions.js +0 -42
- package/bin/impl/utils/codemods/convertImportStyle.d.ts +0 -1
- package/bin/impl/utils/codemods/convertImportStyle.js +0 -30
- package/bin/impl/utils/codemods/convertJsToTs.d.ts +0 -1
- package/bin/impl/utils/codemods/convertJsToTs.js +0 -99
- package/bin/impl/utils/codemods/convertQuoteStyle.d.ts +0 -1
- package/bin/impl/utils/codemods/convertQuoteStyle.js +0 -31
- package/bin/impl/utils/codemods/convertRuntime.d.ts +0 -1
- package/bin/impl/utils/codemods/convertRuntime.js +0 -116
- package/bin/impl/utils/codemods/convertToMonorepo.d.ts +0 -2
- package/bin/impl/utils/codemods/convertToMonorepo.js +0 -137
- package/bin/impl/utils/codemods/removeComments.d.ts +0 -1
- package/bin/impl/utils/codemods/removeComments.js +0 -13
- package/bin/impl/utils/codemods/removeUnusedDeps.d.ts +0 -1
- package/bin/impl/utils/codemods/removeUnusedDeps.js +0 -29
- package/bin/impl/utils/codemods/replaceImportSymbol.d.ts +0 -1
- package/bin/impl/utils/codemods/replaceImportSymbol.js +0 -57
- package/bin/impl/utils/codemods/replaceWithModern.d.ts +0 -1
- package/bin/impl/utils/codemods/replaceWithModern.js +0 -122
- package/bin/impl/utils/comments.d.ts +0 -6
- package/bin/impl/utils/comments.js +0 -41
- package/bin/impl/utils/common.d.ts +0 -9
- package/bin/impl/utils/common.js +0 -37
- package/bin/impl/utils/createPackageJSON.d.ts +0 -6
- package/bin/impl/utils/createPackageJSON.js +0 -20
- package/bin/impl/utils/decideHelper.d.ts +0 -12
- package/bin/impl/utils/decideHelper.js +0 -32
- package/bin/impl/utils/dependencies/getUserPkgManager.d.ts +0 -13
- package/bin/impl/utils/dependencies/getUserPkgManager.js +0 -178
- package/bin/impl/utils/downloading/downloadI18nFiles.d.ts +0 -1
- package/bin/impl/utils/downloading/downloadI18nFiles.js +0 -98
- package/bin/impl/utils/downloading/downloadRepo.d.ts +0 -41
- package/bin/impl/utils/downloading/downloadRepo.js +0 -412
- package/bin/impl/utils/downloading/handleDownload.d.ts +0 -17
- package/bin/impl/utils/downloading/handleDownload.js +0 -160
- package/bin/impl/utils/exec/exec-enoent.d.ts +0 -15
- package/bin/impl/utils/exec/exec-enoent.js +0 -38
- package/bin/impl/utils/exec/exec-env.d.ts +0 -6
- package/bin/impl/utils/exec/exec-env.js +0 -34
- package/bin/impl/utils/exec/exec-error.d.ts +0 -7
- package/bin/impl/utils/exec/exec-error.js +0 -15
- package/bin/impl/utils/exec/exec-escape.d.ts +0 -2
- package/bin/impl/utils/exec/exec-escape.js +0 -15
- package/bin/impl/utils/exec/exec-mod.d.ts +0 -58
- package/bin/impl/utils/exec/exec-mod.js +0 -224
- package/bin/impl/utils/exec/exec-parse.d.ts +0 -2
- package/bin/impl/utils/exec/exec-parse.js +0 -71
- package/bin/impl/utils/exec/exec-resolve.d.ts +0 -2
- package/bin/impl/utils/exec/exec-resolve.js +0 -39
- package/bin/impl/utils/exec/exec-shebang.d.ts +0 -1
- package/bin/impl/utils/exec/exec-shebang.js +0 -14
- package/bin/impl/utils/exec/exec-spawn.d.ts +0 -3
- package/bin/impl/utils/exec/exec-spawn.js +0 -18
- package/bin/impl/utils/exec/exec-stream.d.ts +0 -4
- package/bin/impl/utils/exec/exec-stream.js +0 -18
- package/bin/impl/utils/exec/exec-types.d.ts +0 -13
- package/bin/impl/utils/exec/exec-types.js +0 -9
- package/bin/impl/utils/file-type.d.ts +0 -21
- package/bin/impl/utils/file-type.js +0 -78
- package/bin/impl/utils/finalize.d.ts +0 -10
- package/bin/impl/utils/finalize.js +0 -33
- package/bin/impl/utils/finish-text.d.ts +0 -6
- package/bin/impl/utils/finish-text.js +0 -41
- package/bin/impl/utils/fs-rename.d.ts +0 -2
- package/bin/impl/utils/fs-rename.js +0 -108
- package/bin/impl/utils/getEffectiveDir.d.ts +0 -5
- package/bin/impl/utils/getEffectiveDir.js +0 -4
- package/bin/impl/utils/getPackageManager.d.ts +0 -3
- package/bin/impl/utils/getPackageManager.js +0 -14
- package/bin/impl/utils/handlers/dependencies.d.ts +0 -1
- package/bin/impl/utils/handlers/dependencies.js +0 -19
- package/bin/impl/utils/handlers/handleCleanup.d.ts +0 -1
- package/bin/impl/utils/handlers/handleCleanup.js +0 -84
- package/bin/impl/utils/handlers/handleCodemods.d.ts +0 -2
- package/bin/impl/utils/handlers/handleCodemods.js +0 -203
- package/bin/impl/utils/handlers/isAppInstalled.d.ts +0 -1
- package/bin/impl/utils/handlers/isAppInstalled.js +0 -17
- package/bin/impl/utils/handlers/promptPackageJsonScripts.d.ts +0 -8
- package/bin/impl/utils/handlers/promptPackageJsonScripts.js +0 -130
- package/bin/impl/utils/handlers/shadcn.d.ts +0 -19
- package/bin/impl/utils/handlers/shadcn.js +0 -299
- package/bin/impl/utils/hasOnlyReliverseConfig.d.ts +0 -6
- package/bin/impl/utils/hasOnlyReliverseConfig.js +0 -15
- package/bin/impl/utils/init/init-const.d.ts +0 -34
- package/bin/impl/utils/init/init-const.js +0 -17
- package/bin/impl/utils/init/init-impl.d.ts +0 -22
- package/bin/impl/utils/init/init-impl.js +0 -229
- package/bin/impl/utils/init/init-tmpl.d.ts +0 -3
- package/bin/impl/utils/init/init-tmpl.js +0 -68
- package/bin/impl/utils/init/init-types.d.ts +0 -41
- package/bin/impl/utils/init/init-types.js +0 -0
- package/bin/impl/utils/instanceGithub.d.ts +0 -28
- package/bin/impl/utils/instanceGithub.js +0 -50
- package/bin/impl/utils/instanceVercel.d.ts +0 -16
- package/bin/impl/utils/instanceVercel.js +0 -39
- package/bin/impl/utils/microHelpers.d.ts +0 -11
- package/bin/impl/utils/microHelpers.js +0 -8
- package/bin/impl/utils/mrseHelpers.d.ts +0 -6
- package/bin/impl/utils/mrseHelpers.js +0 -21
- package/bin/impl/utils/pkgJsonHelpers.d.ts +0 -7
- package/bin/impl/utils/pkgJsonHelpers.js +0 -15
- package/bin/impl/utils/pm/pm-api.d.ts +0 -87
- package/bin/impl/utils/pm/pm-api.js +0 -170
- package/bin/impl/utils/pm/pm-catalog.d.ts +0 -36
- package/bin/impl/utils/pm/pm-catalog.js +0 -237
- package/bin/impl/utils/pm/pm-detect.d.ts +0 -12
- package/bin/impl/utils/pm/pm-detect.js +0 -99
- package/bin/impl/utils/pm/pm-meta.d.ts +0 -27
- package/bin/impl/utils/pm/pm-meta.js +0 -86
- package/bin/impl/utils/pm/pm-parse.d.ts +0 -8
- package/bin/impl/utils/pm/pm-parse.js +0 -29
- package/bin/impl/utils/pm/pm-types.d.ts +0 -46
- package/bin/impl/utils/pm/pm-types.js +0 -0
- package/bin/impl/utils/pm/pm-utils.d.ts +0 -12
- package/bin/impl/utils/pm/pm-utils.js +0 -115
- package/bin/impl/utils/projectRepository.d.ts +0 -58
- package/bin/impl/utils/projectRepository.js +0 -228
- package/bin/impl/utils/prompts/askAppOrLib.d.ts +0 -1
- package/bin/impl/utils/prompts/askAppOrLib.js +0 -30
- package/bin/impl/utils/prompts/askInstallDeps.d.ts +0 -7
- package/bin/impl/utils/prompts/askInstallDeps.js +0 -40
- package/bin/impl/utils/prompts/askOpenInIDE.d.ts +0 -5
- package/bin/impl/utils/prompts/askOpenInIDE.js +0 -43
- package/bin/impl/utils/prompts/askProjectName.d.ts +0 -3
- package/bin/impl/utils/prompts/askProjectName.js +0 -21
- package/bin/impl/utils/prompts/askUsernameFrontend.d.ts +0 -2
- package/bin/impl/utils/prompts/askUsernameFrontend.js +0 -28
- package/bin/impl/utils/prompts/askUsernameGithub.d.ts +0 -2
- package/bin/impl/utils/prompts/askUsernameGithub.js +0 -29
- package/bin/impl/utils/prompts/shouldInitGit.d.ts +0 -1
- package/bin/impl/utils/prompts/shouldInitGit.js +0 -8
- package/bin/impl/utils/reliverseMemory.d.ts +0 -3
- package/bin/impl/utils/reliverseMemory.js +0 -122
- package/bin/impl/utils/replacements/reps-impl.d.ts +0 -35
- package/bin/impl/utils/replacements/reps-impl.js +0 -220
- package/bin/impl/utils/replacements/reps-keys.d.ts +0 -16
- package/bin/impl/utils/replacements/reps-keys.js +0 -14
- package/bin/impl/utils/replacements/reps-mod.d.ts +0 -5
- package/bin/impl/utils/replacements/reps-mod.js +0 -211
- package/bin/impl/utils/replacements.d.ts +0 -0
- package/bin/impl/utils/replacements.js +0 -0
- package/bin/impl/utils/resolve-cross-libs.d.ts +0 -1
- package/bin/impl/utils/resolve-cross-libs.js +0 -641
- package/bin/impl/utils/schemaMemory.d.ts +0 -17
- package/bin/impl/utils/schemaMemory.js +0 -0
- package/bin/impl/utils/schemaTemplate.d.ts +0 -27
- package/bin/impl/utils/schemaTemplate.js +0 -98
- package/bin/impl/utils/startEndPrompts.d.ts +0 -8
- package/bin/impl/utils/startEndPrompts.js +0 -53
- package/bin/impl/utils/terminalHelpers.d.ts +0 -19
- package/bin/impl/utils/terminalHelpers.js +0 -43
- package/bin/impl/utils/testsRuntime.d.ts +0 -5
- package/bin/impl/utils/testsRuntime.js +0 -11
- package/bin/impl/utils/tsconfigHelpers.d.ts +0 -5
- package/bin/impl/utils/tsconfigHelpers.js +0 -14
- package/bin/impl/utils/utils-build.d.ts +0 -33
- package/bin/impl/utils/utils-build.js +0 -97
- package/bin/impl/utils/utils-clean.d.ts +0 -11
- package/bin/impl/utils/utils-clean.js +0 -70
- package/bin/impl/utils/utils-deps.d.ts +0 -5
- package/bin/impl/utils/utils-deps.js +0 -126
- package/bin/impl/utils/utils-determine.d.ts +0 -12
- package/bin/impl/utils/utils-determine.js +0 -25
- package/bin/impl/utils/utils-error-cwd.d.ts +0 -19
- package/bin/impl/utils/utils-error-cwd.js +0 -49
- package/bin/impl/utils/utils-fs.d.ts +0 -25
- package/bin/impl/utils/utils-fs.js +0 -183
- package/bin/impl/utils/utils-jsr-json.d.ts +0 -9
- package/bin/impl/utils/utils-jsr-json.js +0 -75
- package/bin/impl/utils/utils-misc.d.ts +0 -7
- package/bin/impl/utils/utils-misc.js +0 -7
- package/bin/impl/utils/utils-package-json-libraries.d.ts +0 -10
- package/bin/impl/utils/utils-package-json-libraries.js +0 -316
- package/bin/impl/utils/utils-package-json-regular.d.ts +0 -8
- package/bin/impl/utils/utils-package-json-regular.js +0 -165
- package/bin/impl/utils/utils-perf.d.ts +0 -5
- package/bin/impl/utils/utils-perf.js +0 -22
- package/bin/impl/utils/utils-security.d.ts +0 -12
- package/bin/impl/utils/utils-security.js +0 -95
- package/bin/impl/utils/utils-tsconfig.d.ts +0 -10
- package/bin/impl/utils/utils-tsconfig.js +0 -81
- package/bin/impl/utils/workspace-prompt.d.ts +0 -9
- package/bin/impl/utils/workspace-prompt.js +0 -46
- package/bin/impl/utils/workspace-utils.d.ts +0 -28
- package/bin/impl/utils/workspace-utils.js +0 -127
- package/bin/mod.d.ts +0 -430
- package/bin/mod.js +0 -1025
- /package/{bin/impl/add/add-local/core → dist/cmds/clean}/types.js +0 -0
- /package/{bin/impl/auth/generators → dist/cmds/init/impl}/types.js +0 -0
- /package/{bin/impl/auth/impl → dist/cmds/integrate}/types.js +0 -0
- /package/{bin/impl/add/add-global/install-mod.d.ts → dist/cmds/perf/types.js} +0 -0
- /package/{bin/impl/add/add-global/install-mod.js → dist/cmds/tsc/types.js} +0 -0
package/bin/impl/update/impl.js
DELETED
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
import path from "@reliverse/pathkit";
|
|
2
|
-
import fs from "@reliverse/relifso";
|
|
3
|
-
import { relinka } from "@reliverse/relinka";
|
|
4
|
-
import pMap from "p-map";
|
|
5
|
-
import { glob } from "tinyglobby";
|
|
6
|
-
import { detectPackageManager } from "../utils/pm/pm-detect.js";
|
|
7
|
-
import {
|
|
8
|
-
applyVersionUpdate,
|
|
9
|
-
checkPackageUpdate,
|
|
10
|
-
collectTargetDependencies,
|
|
11
|
-
prepareDependenciesForUpdate,
|
|
12
|
-
runInstallCommand
|
|
13
|
-
} from "./utils.js";
|
|
14
|
-
export async function validatePackageJson() {
|
|
15
|
-
const packageJsonPath = path.resolve(process.cwd(), "package.json");
|
|
16
|
-
if (!await fs.pathExists(packageJsonPath)) {
|
|
17
|
-
relinka("error", "No package.json found in current directory");
|
|
18
|
-
process.exit(1);
|
|
19
|
-
}
|
|
20
|
-
return packageJsonPath;
|
|
21
|
-
}
|
|
22
|
-
export async function prepareAllUpdateCandidates() {
|
|
23
|
-
const packageJsonFiles = await glob("**/package.json", {
|
|
24
|
-
cwd: process.cwd(),
|
|
25
|
-
absolute: true,
|
|
26
|
-
ignore: [
|
|
27
|
-
"**/node_modules/**",
|
|
28
|
-
"**/dist/**",
|
|
29
|
-
"**/build/**",
|
|
30
|
-
"**/.git/**",
|
|
31
|
-
"**/coverage/**",
|
|
32
|
-
"**/.next/**",
|
|
33
|
-
"**/.nuxt/**",
|
|
34
|
-
"**/out/**",
|
|
35
|
-
"**/target/**",
|
|
36
|
-
"**/.turbo/**"
|
|
37
|
-
]
|
|
38
|
-
});
|
|
39
|
-
if (packageJsonFiles.length === 0) {
|
|
40
|
-
relinka("warn", "No package.json files found");
|
|
41
|
-
return { packageJsonFiles: [], fileDepsMap: /* @__PURE__ */ new Map() };
|
|
42
|
-
}
|
|
43
|
-
relinka("verbose", `Found ${packageJsonFiles.length} package.json files`);
|
|
44
|
-
const fileDepsMap = /* @__PURE__ */ new Map();
|
|
45
|
-
for (const packageJsonPath of packageJsonFiles) {
|
|
46
|
-
try {
|
|
47
|
-
const packageJson = JSON.parse(await fs.readFile(packageJsonPath, "utf8"));
|
|
48
|
-
const { map } = collectTargetDependencies(packageJson);
|
|
49
|
-
fileDepsMap.set(packageJsonPath, map);
|
|
50
|
-
} catch (error) {
|
|
51
|
-
relinka(
|
|
52
|
-
"warn",
|
|
53
|
-
`Failed to process ${packageJsonPath}: ${error instanceof Error ? error.message : String(error)}`
|
|
54
|
-
);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
relinka("verbose", `Processing ${packageJsonFiles.length} package.json files`);
|
|
58
|
-
return { packageJsonFiles, fileDepsMap };
|
|
59
|
-
}
|
|
60
|
-
export async function checkPackageUpdatesForFile(fileDepsMap, args) {
|
|
61
|
-
const options = {
|
|
62
|
-
allowMajor: !!args.allowMajor,
|
|
63
|
-
savePrefix: "^",
|
|
64
|
-
// Use default prefix
|
|
65
|
-
concurrency: args.concurrency || 5
|
|
66
|
-
};
|
|
67
|
-
const candidates = prepareDependenciesForUpdate(fileDepsMap, args);
|
|
68
|
-
if (candidates.length === 0) {
|
|
69
|
-
return [];
|
|
70
|
-
}
|
|
71
|
-
return await pMap(
|
|
72
|
-
candidates,
|
|
73
|
-
async (dep) => {
|
|
74
|
-
const depInfo = fileDepsMap[dep];
|
|
75
|
-
if (!depInfo?.versionSpec) {
|
|
76
|
-
return {
|
|
77
|
-
package: dep,
|
|
78
|
-
currentVersion: "unknown",
|
|
79
|
-
latestVersion: "unknown",
|
|
80
|
-
updated: false,
|
|
81
|
-
error: "Current version not found",
|
|
82
|
-
semverCompatible: false,
|
|
83
|
-
location: "unknown"
|
|
84
|
-
};
|
|
85
|
-
}
|
|
86
|
-
return checkPackageUpdate(dep, depInfo.versionSpec, depInfo.locations, options);
|
|
87
|
-
},
|
|
88
|
-
{ concurrency: args.concurrency || 5 }
|
|
89
|
-
);
|
|
90
|
-
}
|
|
91
|
-
export async function updatePackageJsonFileDirectly(packageJsonPath, fileDepsMap, updatesToApply, savePrefix, fieldsToIgnore = []) {
|
|
92
|
-
if (updatesToApply.length === 0) return 0;
|
|
93
|
-
try {
|
|
94
|
-
const packageJson = JSON.parse(await fs.readFile(packageJsonPath, "utf8"));
|
|
95
|
-
const updatedPackageJson = { ...packageJson };
|
|
96
|
-
for (const update of updatesToApply) {
|
|
97
|
-
const depInfo = fileDepsMap[update.package];
|
|
98
|
-
if (!depInfo) continue;
|
|
99
|
-
const locations = depInfo.locations || /* @__PURE__ */ new Set();
|
|
100
|
-
const shouldIgnore = Array.from(locations).some(
|
|
101
|
-
(location) => fieldsToIgnore.includes(String(location))
|
|
102
|
-
);
|
|
103
|
-
if (shouldIgnore) {
|
|
104
|
-
continue;
|
|
105
|
-
}
|
|
106
|
-
let newVersion;
|
|
107
|
-
if (locations.has("peerDependencies")) {
|
|
108
|
-
const currentVersion = String(fileDepsMap[update.package]?.versionSpec || "");
|
|
109
|
-
if (currentVersion.startsWith(">=")) {
|
|
110
|
-
newVersion = `>=${update.latestVersion}`;
|
|
111
|
-
} else {
|
|
112
|
-
newVersion = savePrefix === "none" ? update.latestVersion : `${savePrefix}${update.latestVersion}`;
|
|
113
|
-
}
|
|
114
|
-
} else {
|
|
115
|
-
newVersion = savePrefix === "none" ? update.latestVersion : `${savePrefix}${update.latestVersion}`;
|
|
116
|
-
}
|
|
117
|
-
applyVersionUpdate(updatedPackageJson, update.package, newVersion, locations);
|
|
118
|
-
}
|
|
119
|
-
await fs.writeFile(packageJsonPath, JSON.stringify(updatedPackageJson, null, 2) + "\n", "utf8");
|
|
120
|
-
return updatesToApply.length;
|
|
121
|
-
} catch (error) {
|
|
122
|
-
relinka(
|
|
123
|
-
"warn",
|
|
124
|
-
`Failed to update ${packageJsonPath}: ${error instanceof Error ? error.message : String(error)}`
|
|
125
|
-
);
|
|
126
|
-
return 0;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
export async function handleInstallation() {
|
|
130
|
-
const packageManager = await detectPackageManager(process.cwd());
|
|
131
|
-
if (!packageManager) {
|
|
132
|
-
relinka("warn", "Could not detect package manager. Please run install manually.");
|
|
133
|
-
return;
|
|
134
|
-
}
|
|
135
|
-
try {
|
|
136
|
-
await runInstallCommand(packageManager);
|
|
137
|
-
relinka("log", "Installation completed successfully");
|
|
138
|
-
} catch (error) {
|
|
139
|
-
relinka("warn", `Install failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
140
|
-
relinka("log", `Run '${packageManager.command} install' manually to apply the changes`);
|
|
141
|
-
}
|
|
142
|
-
}
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
import { type PackageManager } from "../utils/dependencies/getUserPkgManager.js";
|
|
2
|
-
export interface UpdateResult {
|
|
3
|
-
package: string;
|
|
4
|
-
currentVersion: string;
|
|
5
|
-
latestVersion: string;
|
|
6
|
-
updated: boolean;
|
|
7
|
-
error?: string;
|
|
8
|
-
semverCompatible?: boolean;
|
|
9
|
-
location?: string;
|
|
10
|
-
}
|
|
11
|
-
export interface DependencyInfo {
|
|
12
|
-
versionSpec: string;
|
|
13
|
-
locations: Set<string>;
|
|
14
|
-
}
|
|
15
|
-
export interface PackageCheckOptions {
|
|
16
|
-
allowMajor: boolean;
|
|
17
|
-
savePrefix: string;
|
|
18
|
-
concurrency: number;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Check if a dependency is an npm alias (e.g., "npm:package-name@version")
|
|
22
|
-
*/
|
|
23
|
-
export declare function isNpmAlias(versionSpec: string): boolean;
|
|
24
|
-
/**
|
|
25
|
-
* Check if a dependency is a workspace dependency (e.g., "workspace:*")
|
|
26
|
-
*/
|
|
27
|
-
export declare function isWorkspaceDependency(versionSpec: string): boolean;
|
|
28
|
-
export declare function isCatalogReference(versionSpec: string): boolean;
|
|
29
|
-
export declare function isNonSemverSpecifier(versionSpec: string): boolean;
|
|
30
|
-
/**
|
|
31
|
-
* Check if a version update is semver-compatible with the current version range
|
|
32
|
-
* Note: Returns false for exact versions (handled separately in checkPackageUpdate)
|
|
33
|
-
*/
|
|
34
|
-
export declare function isSemverCompatible(currentVersionRange: string, latestVersion: string): boolean;
|
|
35
|
-
/**
|
|
36
|
-
* Collect ALL dependencies from package.json.
|
|
37
|
-
* Returns a map of dependency name to its version and all locations where it appears.
|
|
38
|
-
*/
|
|
39
|
-
export declare function collectTargetDependencies(pkg: any): {
|
|
40
|
-
map: Record<string, DependencyInfo>;
|
|
41
|
-
};
|
|
42
|
-
/**
|
|
43
|
-
* Apply a version update into all relevant places in package.json for a dependency.
|
|
44
|
-
*/
|
|
45
|
-
export declare function applyVersionUpdate(pkg: any, depName: string, newVersion: string, locations: Set<string>): void;
|
|
46
|
-
/**
|
|
47
|
-
* Fallback function to fetch package version directly from npm registry
|
|
48
|
-
*/
|
|
49
|
-
export declare function fetchVersionFromRegistry(packageName: string): Promise<string>;
|
|
50
|
-
/**
|
|
51
|
-
* Get latest version of a package
|
|
52
|
-
*/
|
|
53
|
-
export declare function getLatestVersion(packageName: string): Promise<string>;
|
|
54
|
-
/**
|
|
55
|
-
* Check if a package needs updating and get update information
|
|
56
|
-
*
|
|
57
|
-
* Update behavior:
|
|
58
|
-
* - Gets latest version from registry (not just semver-compatible)
|
|
59
|
-
* - Exact versions (1.0.0): Always allow updates to latest
|
|
60
|
-
* - Prefixed versions (^1.0.0, ~1.0.0): Updates to latest if allowMajor=true (default)
|
|
61
|
-
* - When allowMajor=false: Only allows updates within semver range
|
|
62
|
-
*/
|
|
63
|
-
export declare function checkPackageUpdate(packageName: string, versionSpec: string, locations: Set<string>, options: PackageCheckOptions): Promise<UpdateResult>;
|
|
64
|
-
/**
|
|
65
|
-
* Filter and prepare dependencies for updating with glob pattern support
|
|
66
|
-
*/
|
|
67
|
-
export declare function prepareDependenciesForUpdate(allDepsMap: Record<string, DependencyInfo>, args: any): string[];
|
|
68
|
-
/**
|
|
69
|
-
* Update a single package.json file with new dependency versions
|
|
70
|
-
*/
|
|
71
|
-
export declare function updatePackageJsonFile(packageJsonPath: string, dependencies: Record<string, DependencyInfo>, updatesToApply: UpdateResult[], savePrefix: string, fieldsToIgnore?: string[]): Promise<number>;
|
|
72
|
-
/**
|
|
73
|
-
* Display update results in a structured, file-by-file format
|
|
74
|
-
*/
|
|
75
|
-
export declare function displayStructuredUpdateResults(results: UpdateResult[], packageJsonFiles: string[], fileDepsMap: Map<string, Record<string, any>>, showDetails?: boolean): void;
|
|
76
|
-
/**
|
|
77
|
-
* Run install command for the detected package manager
|
|
78
|
-
*/
|
|
79
|
-
export declare function runInstallCommand(packageManager: any): Promise<void>;
|
|
80
|
-
export declare function getPmOptions(): Promise<{
|
|
81
|
-
pmOptions: {
|
|
82
|
-
label: string;
|
|
83
|
-
value: PackageManager;
|
|
84
|
-
hint?: string;
|
|
85
|
-
}[];
|
|
86
|
-
defaultValue: any;
|
|
87
|
-
}>;
|
package/bin/impl/update/utils.js
DELETED
|
@@ -1,448 +0,0 @@
|
|
|
1
|
-
import fs from "@reliverse/relifso";
|
|
2
|
-
import { relinka } from "@reliverse/relinka";
|
|
3
|
-
import rematch from "@reliverse/rematch";
|
|
4
|
-
import { $ } from "bun";
|
|
5
|
-
import path from "path";
|
|
6
|
-
import semver from "semver";
|
|
7
|
-
import {
|
|
8
|
-
getAllPkgManagers
|
|
9
|
-
} from "../utils/dependencies/getUserPkgManager.js";
|
|
10
|
-
import { latestVersion } from "../utils/pm/pm-meta.js";
|
|
11
|
-
import { getCurrentWorkingDirectory } from "../utils/terminalHelpers.js";
|
|
12
|
-
export function isNpmAlias(versionSpec) {
|
|
13
|
-
return versionSpec.startsWith("npm:");
|
|
14
|
-
}
|
|
15
|
-
export function isWorkspaceDependency(versionSpec) {
|
|
16
|
-
return versionSpec.startsWith("workspace:");
|
|
17
|
-
}
|
|
18
|
-
export function isCatalogReference(versionSpec) {
|
|
19
|
-
return versionSpec.startsWith("catalog:");
|
|
20
|
-
}
|
|
21
|
-
export function isNonSemverSpecifier(versionSpec) {
|
|
22
|
-
return isNpmAlias(versionSpec) || isWorkspaceDependency(versionSpec) || isCatalogReference(versionSpec) || versionSpec.startsWith("git+") || versionSpec.startsWith("file:") || versionSpec.startsWith("link:") || versionSpec.startsWith("http:") || versionSpec.startsWith("https:");
|
|
23
|
-
}
|
|
24
|
-
export function isSemverCompatible(currentVersionRange, latestVersion2) {
|
|
25
|
-
try {
|
|
26
|
-
if (isNpmAlias(currentVersionRange)) {
|
|
27
|
-
return false;
|
|
28
|
-
}
|
|
29
|
-
if (isWorkspaceDependency(currentVersionRange)) {
|
|
30
|
-
return false;
|
|
31
|
-
}
|
|
32
|
-
if (!currentVersionRange.startsWith("^") && !currentVersionRange.startsWith("~")) {
|
|
33
|
-
return false;
|
|
34
|
-
}
|
|
35
|
-
return semver.satisfies(latestVersion2, currentVersionRange);
|
|
36
|
-
} catch {
|
|
37
|
-
return false;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
export function collectTargetDependencies(pkg) {
|
|
41
|
-
const map = {};
|
|
42
|
-
const dependencies = pkg.dependencies || {};
|
|
43
|
-
const devDependencies = pkg.devDependencies || {};
|
|
44
|
-
const peerDependencies = pkg.peerDependencies || {};
|
|
45
|
-
const optionalDependencies = pkg.optionalDependencies || {};
|
|
46
|
-
for (const dep of Object.keys(dependencies)) {
|
|
47
|
-
const version = dependencies[dep];
|
|
48
|
-
if (!version) continue;
|
|
49
|
-
if (!map[dep]) map[dep] = { versionSpec: version, locations: /* @__PURE__ */ new Set() };
|
|
50
|
-
map[dep].versionSpec = version;
|
|
51
|
-
map[dep].locations.add("dependencies");
|
|
52
|
-
}
|
|
53
|
-
for (const dep of Object.keys(devDependencies)) {
|
|
54
|
-
const version = devDependencies[dep];
|
|
55
|
-
if (!version) continue;
|
|
56
|
-
if (!map[dep]) map[dep] = { versionSpec: version, locations: /* @__PURE__ */ new Set() };
|
|
57
|
-
map[dep].versionSpec = version;
|
|
58
|
-
map[dep].locations.add("devDependencies");
|
|
59
|
-
}
|
|
60
|
-
for (const dep of Object.keys(peerDependencies)) {
|
|
61
|
-
const version = peerDependencies[dep];
|
|
62
|
-
if (!version) continue;
|
|
63
|
-
if (!map[dep]) map[dep] = { versionSpec: version, locations: /* @__PURE__ */ new Set() };
|
|
64
|
-
map[dep].versionSpec = version;
|
|
65
|
-
map[dep].locations.add("peerDependencies");
|
|
66
|
-
}
|
|
67
|
-
for (const dep of Object.keys(optionalDependencies)) {
|
|
68
|
-
const version = optionalDependencies[dep];
|
|
69
|
-
if (!version) continue;
|
|
70
|
-
if (!map[dep]) map[dep] = { versionSpec: version, locations: /* @__PURE__ */ new Set() };
|
|
71
|
-
map[dep].versionSpec = version;
|
|
72
|
-
map[dep].locations.add("optionalDependencies");
|
|
73
|
-
}
|
|
74
|
-
const workspacesCatalog = pkg.workspaces?.catalog || {};
|
|
75
|
-
for (const dep of Object.keys(workspacesCatalog)) {
|
|
76
|
-
const version = workspacesCatalog[dep];
|
|
77
|
-
if (!version) continue;
|
|
78
|
-
if (!map[dep]) map[dep] = { versionSpec: version, locations: /* @__PURE__ */ new Set() };
|
|
79
|
-
map[dep].versionSpec = version;
|
|
80
|
-
map[dep].locations.add("catalog");
|
|
81
|
-
}
|
|
82
|
-
const workspacesCatalogs = pkg.workspaces?.catalogs || {};
|
|
83
|
-
for (const catalogName of Object.keys(workspacesCatalogs)) {
|
|
84
|
-
const catalog = workspacesCatalogs[catalogName] || {};
|
|
85
|
-
for (const dep of Object.keys(catalog)) {
|
|
86
|
-
const version = catalog[dep];
|
|
87
|
-
if (!version) continue;
|
|
88
|
-
if (!map[dep]) map[dep] = { versionSpec: version, locations: /* @__PURE__ */ new Set() };
|
|
89
|
-
map[dep].versionSpec = version;
|
|
90
|
-
map[dep].locations.add(`catalogs.${catalogName}`);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
const topLevelCatalog = pkg.catalog || {};
|
|
94
|
-
for (const dep of Object.keys(topLevelCatalog)) {
|
|
95
|
-
const version = topLevelCatalog[dep];
|
|
96
|
-
if (!version) continue;
|
|
97
|
-
if (!map[dep]) map[dep] = { versionSpec: version, locations: /* @__PURE__ */ new Set() };
|
|
98
|
-
map[dep].versionSpec = version;
|
|
99
|
-
map[dep].locations.add("catalog");
|
|
100
|
-
}
|
|
101
|
-
const topLevelCatalogs = pkg.catalogs || {};
|
|
102
|
-
for (const catalogName of Object.keys(topLevelCatalogs)) {
|
|
103
|
-
const catalog = topLevelCatalogs[catalogName] || {};
|
|
104
|
-
for (const dep of Object.keys(catalog)) {
|
|
105
|
-
const version = catalog[dep];
|
|
106
|
-
if (!version) continue;
|
|
107
|
-
if (!map[dep]) map[dep] = { versionSpec: version, locations: /* @__PURE__ */ new Set() };
|
|
108
|
-
map[dep].versionSpec = version;
|
|
109
|
-
map[dep].locations.add(`catalogs.${catalogName}`);
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
return { map };
|
|
113
|
-
}
|
|
114
|
-
export function applyVersionUpdate(pkg, depName, newVersion, locations) {
|
|
115
|
-
if (locations.has("dependencies")) {
|
|
116
|
-
if (!pkg.dependencies) pkg.dependencies = {};
|
|
117
|
-
pkg.dependencies[depName] = newVersion;
|
|
118
|
-
}
|
|
119
|
-
if (locations.has("devDependencies")) {
|
|
120
|
-
if (!pkg.devDependencies) pkg.devDependencies = {};
|
|
121
|
-
pkg.devDependencies[depName] = newVersion;
|
|
122
|
-
}
|
|
123
|
-
if (locations.has("peerDependencies")) {
|
|
124
|
-
if (!pkg.peerDependencies) pkg.peerDependencies = {};
|
|
125
|
-
pkg.peerDependencies[depName] = newVersion;
|
|
126
|
-
}
|
|
127
|
-
if (locations.has("optionalDependencies")) {
|
|
128
|
-
if (!pkg.optionalDependencies) pkg.optionalDependencies = {};
|
|
129
|
-
pkg.optionalDependencies[depName] = newVersion;
|
|
130
|
-
}
|
|
131
|
-
const ensureWorkspaces = () => {
|
|
132
|
-
if (!pkg.workspaces) pkg.workspaces = {};
|
|
133
|
-
};
|
|
134
|
-
if (locations.has("catalog")) {
|
|
135
|
-
ensureWorkspaces();
|
|
136
|
-
if (!pkg.workspaces.catalog) pkg.workspaces.catalog = {};
|
|
137
|
-
pkg.workspaces.catalog[depName] = newVersion;
|
|
138
|
-
if (pkg.catalog) pkg.catalog[depName] = newVersion;
|
|
139
|
-
}
|
|
140
|
-
for (const loc of locations) {
|
|
141
|
-
const match = /^catalogs\.(.+)$/.exec(loc);
|
|
142
|
-
if (match) {
|
|
143
|
-
const catalogName = match[1] ?? "";
|
|
144
|
-
if (!catalogName) continue;
|
|
145
|
-
ensureWorkspaces();
|
|
146
|
-
if (!pkg.workspaces.catalogs) pkg.workspaces.catalogs = {};
|
|
147
|
-
if (!pkg.workspaces.catalogs[catalogName])
|
|
148
|
-
pkg.workspaces.catalogs[catalogName] = {};
|
|
149
|
-
pkg.workspaces.catalogs[catalogName][depName] = newVersion;
|
|
150
|
-
if (pkg.catalogs && pkg.catalogs[catalogName]) {
|
|
151
|
-
pkg.catalogs[catalogName][depName] = newVersion;
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
export async function fetchVersionFromRegistry(packageName) {
|
|
157
|
-
const response = await fetch(`https://registry.npmjs.org/${packageName}/latest`);
|
|
158
|
-
if (!response.ok) {
|
|
159
|
-
throw new Error(`HTTP ${response.status}: ${response.statusText}`);
|
|
160
|
-
}
|
|
161
|
-
const data = await response.json();
|
|
162
|
-
return data.version;
|
|
163
|
-
}
|
|
164
|
-
export async function getLatestVersion(packageName) {
|
|
165
|
-
try {
|
|
166
|
-
return await latestVersion(packageName);
|
|
167
|
-
} catch (error) {
|
|
168
|
-
try {
|
|
169
|
-
return await fetchVersionFromRegistry(packageName);
|
|
170
|
-
} catch (fallbackError) {
|
|
171
|
-
throw new Error(`Failed to get latest version for ${packageName}: ${error}`);
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
export async function checkPackageUpdate(packageName, versionSpec, locations, options) {
|
|
176
|
-
try {
|
|
177
|
-
const latest = await getLatestVersion(packageName);
|
|
178
|
-
const cleanCurrent = versionSpec.replace(/^[\^~]/, "");
|
|
179
|
-
let isCompatible = isSemverCompatible(versionSpec, latest);
|
|
180
|
-
const isExact = !versionSpec.startsWith("^") && !versionSpec.startsWith("~");
|
|
181
|
-
if (isExact || !isCompatible && options.allowMajor) {
|
|
182
|
-
isCompatible = true;
|
|
183
|
-
}
|
|
184
|
-
return {
|
|
185
|
-
package: packageName,
|
|
186
|
-
currentVersion: cleanCurrent,
|
|
187
|
-
latestVersion: latest,
|
|
188
|
-
updated: latest !== cleanCurrent && isCompatible,
|
|
189
|
-
semverCompatible: isCompatible,
|
|
190
|
-
location: Array.from(locations).join(", ")
|
|
191
|
-
};
|
|
192
|
-
} catch (error) {
|
|
193
|
-
return {
|
|
194
|
-
package: packageName,
|
|
195
|
-
currentVersion: versionSpec,
|
|
196
|
-
latestVersion: versionSpec,
|
|
197
|
-
updated: false,
|
|
198
|
-
error: error instanceof Error ? error.message : String(error),
|
|
199
|
-
semverCompatible: false,
|
|
200
|
-
location: Array.from(locations).join(", ")
|
|
201
|
-
};
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
export function prepareDependenciesForUpdate(allDepsMap, args) {
|
|
205
|
-
const depsToUpdate = Object.keys(allDepsMap);
|
|
206
|
-
let filteredDeps = [];
|
|
207
|
-
if (args.name && args.name.length > 0) {
|
|
208
|
-
const namePatterns = args.name;
|
|
209
|
-
filteredDeps = depsToUpdate.filter((dep) => {
|
|
210
|
-
return namePatterns.some((pattern) => {
|
|
211
|
-
if (pattern.includes("*") || pattern.includes("?") || pattern.includes("[") || pattern.includes("{")) {
|
|
212
|
-
return rematch(pattern, dep);
|
|
213
|
-
}
|
|
214
|
-
return dep === pattern;
|
|
215
|
-
});
|
|
216
|
-
});
|
|
217
|
-
const exactMatches = filteredDeps.filter((dep) => namePatterns.includes(dep));
|
|
218
|
-
const patternMatches = filteredDeps.length - exactMatches.length;
|
|
219
|
-
if (patternMatches > 0) {
|
|
220
|
-
relinka(
|
|
221
|
-
"verbose",
|
|
222
|
-
`Found ${exactMatches.length} exact matches and ${patternMatches} pattern matches`
|
|
223
|
-
);
|
|
224
|
-
}
|
|
225
|
-
if (filteredDeps.length === 0) {
|
|
226
|
-
relinka("warn", `No dependencies found matching patterns: ${namePatterns.join(", ")}`);
|
|
227
|
-
}
|
|
228
|
-
} else {
|
|
229
|
-
const ignoreList = args.ignore || [];
|
|
230
|
-
filteredDeps = depsToUpdate.filter((dep) => {
|
|
231
|
-
return !ignoreList.some((ignorePattern) => {
|
|
232
|
-
if (ignorePattern.includes("*") || ignorePattern.includes("?") || ignorePattern.includes("[") || ignorePattern.includes("{")) {
|
|
233
|
-
return rematch(ignorePattern, dep);
|
|
234
|
-
}
|
|
235
|
-
return dep === ignorePattern;
|
|
236
|
-
});
|
|
237
|
-
});
|
|
238
|
-
const ignoredCount = depsToUpdate.length - filteredDeps.length;
|
|
239
|
-
if (ignoredCount > 0 && ignoreList.length > 0) {
|
|
240
|
-
relinka("verbose", `Ignored ${ignoredCount} dependencies matching ignore patterns`);
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
const ignoreFields = args.ignoreFields || [];
|
|
244
|
-
if (ignoreFields.length > 0) {
|
|
245
|
-
filteredDeps = filteredDeps.filter((dep) => {
|
|
246
|
-
const locations = allDepsMap[dep]?.locations || /* @__PURE__ */ new Set();
|
|
247
|
-
return !Array.from(locations).some((location) => ignoreFields.includes(location));
|
|
248
|
-
});
|
|
249
|
-
const ignoredFieldsCount = depsToUpdate.length - filteredDeps.length;
|
|
250
|
-
if (ignoredFieldsCount > 0) {
|
|
251
|
-
relinka(
|
|
252
|
-
"verbose",
|
|
253
|
-
`Ignored ${ignoredFieldsCount} dependencies in ignored fields: ${ignoreFields.join(", ")}`
|
|
254
|
-
);
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
return filteredDeps.filter((dep) => {
|
|
258
|
-
const versionSpec = allDepsMap[dep]?.versionSpec ?? "";
|
|
259
|
-
if (!versionSpec) return false;
|
|
260
|
-
if (isNonSemverSpecifier(versionSpec)) return false;
|
|
261
|
-
return true;
|
|
262
|
-
});
|
|
263
|
-
}
|
|
264
|
-
export async function updatePackageJsonFile(packageJsonPath, dependencies, updatesToApply, savePrefix, fieldsToIgnore = []) {
|
|
265
|
-
if (updatesToApply.length === 0) return 0;
|
|
266
|
-
try {
|
|
267
|
-
const packageJson = JSON.parse(await fs.readFile(packageJsonPath, "utf8"));
|
|
268
|
-
const updatedPackageJson = { ...packageJson };
|
|
269
|
-
for (const update of updatesToApply) {
|
|
270
|
-
const depInfo = dependencies[update.package];
|
|
271
|
-
if (!depInfo) continue;
|
|
272
|
-
const locations = depInfo.locations || /* @__PURE__ */ new Set();
|
|
273
|
-
const shouldIgnore = Array.from(locations).some(
|
|
274
|
-
(location) => fieldsToIgnore.includes(location)
|
|
275
|
-
);
|
|
276
|
-
if (shouldIgnore) {
|
|
277
|
-
continue;
|
|
278
|
-
}
|
|
279
|
-
let newVersion;
|
|
280
|
-
if (locations.has("peerDependencies")) {
|
|
281
|
-
const currentVersion = dependencies[update.package]?.versionSpec || "";
|
|
282
|
-
if (currentVersion.startsWith(">=")) {
|
|
283
|
-
newVersion = `>=${update.latestVersion}`;
|
|
284
|
-
} else {
|
|
285
|
-
newVersion = savePrefix === "none" ? update.latestVersion : `${savePrefix}${update.latestVersion}`;
|
|
286
|
-
}
|
|
287
|
-
} else {
|
|
288
|
-
newVersion = savePrefix === "none" ? update.latestVersion : `${savePrefix}${update.latestVersion}`;
|
|
289
|
-
}
|
|
290
|
-
applyVersionUpdate(updatedPackageJson, update.package, newVersion, locations);
|
|
291
|
-
}
|
|
292
|
-
await fs.writeFile(packageJsonPath, JSON.stringify(updatedPackageJson, null, 2) + "\n", "utf8");
|
|
293
|
-
return updatesToApply.length;
|
|
294
|
-
} catch (error) {
|
|
295
|
-
relinka(
|
|
296
|
-
"warn",
|
|
297
|
-
`Failed to update ${packageJsonPath}: ${error instanceof Error ? error.message : String(error)}`
|
|
298
|
-
);
|
|
299
|
-
return 0;
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
export function displayStructuredUpdateResults(results, packageJsonFiles, fileDepsMap, showDetails = false) {
|
|
303
|
-
const toUpdate = results.filter((r) => r.updated && !r.error);
|
|
304
|
-
const errors = results.filter((r) => r.error);
|
|
305
|
-
const upToDate = results.filter((r) => !r.updated && !r.error && r.semverCompatible);
|
|
306
|
-
if (errors.length > 0) {
|
|
307
|
-
relinka("warn", `Failed to check ${errors.length} dependencies:`);
|
|
308
|
-
for (const error of errors) {
|
|
309
|
-
relinka("warn", ` ${error.package} (${error.location}): ${error.error}`);
|
|
310
|
-
}
|
|
311
|
-
relinka("log", "");
|
|
312
|
-
}
|
|
313
|
-
if (!showDetails) {
|
|
314
|
-
if (toUpdate.length === 0) {
|
|
315
|
-
relinka("log", `All ${upToDate.length} dependencies are already up to date`);
|
|
316
|
-
} else {
|
|
317
|
-
relinka(
|
|
318
|
-
"log",
|
|
319
|
-
`${toUpdate.length} dependencies can be updated across ${packageJsonFiles.length} package.json files`
|
|
320
|
-
);
|
|
321
|
-
}
|
|
322
|
-
return;
|
|
323
|
-
}
|
|
324
|
-
const resultsByFile = /* @__PURE__ */ new Map();
|
|
325
|
-
for (const result of results) {
|
|
326
|
-
let filePath = "unknown";
|
|
327
|
-
for (const [pkgPath, deps] of fileDepsMap.entries()) {
|
|
328
|
-
if (deps[result.package]) {
|
|
329
|
-
filePath = pkgPath;
|
|
330
|
-
break;
|
|
331
|
-
}
|
|
332
|
-
}
|
|
333
|
-
if (!resultsByFile.has(filePath)) {
|
|
334
|
-
resultsByFile.set(filePath, []);
|
|
335
|
-
}
|
|
336
|
-
const fileResults = resultsByFile.get(filePath);
|
|
337
|
-
if (fileResults) {
|
|
338
|
-
fileResults.push(result);
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
for (const [filePath, fileResults] of resultsByFile.entries()) {
|
|
342
|
-
const relativePath = filePath !== "unknown" ? path.relative(process.cwd(), filePath) : "unknown";
|
|
343
|
-
relinka("info", `${relativePath}`);
|
|
344
|
-
const byCategory = /* @__PURE__ */ new Map();
|
|
345
|
-
for (const result of fileResults) {
|
|
346
|
-
const category = result.location || "unknown";
|
|
347
|
-
if (!byCategory.has(category)) {
|
|
348
|
-
byCategory.set(category, []);
|
|
349
|
-
}
|
|
350
|
-
byCategory.get(category).push(result);
|
|
351
|
-
}
|
|
352
|
-
const upToDateInFile = fileResults.filter((r) => !r.updated && !r.error && r.semverCompatible);
|
|
353
|
-
if (upToDateInFile.length > 0) {
|
|
354
|
-
relinka("log", ` * ${upToDateInFile.length} deps are already up to date`);
|
|
355
|
-
}
|
|
356
|
-
const toUpdateInFile = fileResults.filter((r) => r.updated && !r.error);
|
|
357
|
-
if (toUpdateInFile.length > 0) {
|
|
358
|
-
relinka("log", ` * ${toUpdateInFile.length} deps can be updated:`);
|
|
359
|
-
const sortedCategories = Array.from(byCategory.entries()).sort(([a], [b]) => {
|
|
360
|
-
const order = {
|
|
361
|
-
catalog: 0,
|
|
362
|
-
dependencies: 1,
|
|
363
|
-
devDependencies: 2,
|
|
364
|
-
peerDependencies: 3,
|
|
365
|
-
optionalDependencies: 4
|
|
366
|
-
};
|
|
367
|
-
const aOrder = order[a] ?? 999;
|
|
368
|
-
const bOrder = order[b] ?? 999;
|
|
369
|
-
return aOrder - bOrder;
|
|
370
|
-
});
|
|
371
|
-
for (const [category, updates] of sortedCategories) {
|
|
372
|
-
const categoryUpdates = updates.filter((r) => r.updated && !r.error);
|
|
373
|
-
if (categoryUpdates.length > 0) {
|
|
374
|
-
let displayCategory = category;
|
|
375
|
-
if (category.startsWith("catalogs.")) {
|
|
376
|
-
displayCategory = `workspaces.${category}`;
|
|
377
|
-
} else if (category === "catalog") {
|
|
378
|
-
displayCategory = "workspaces.catalog";
|
|
379
|
-
}
|
|
380
|
-
relinka("log", ` - ${displayCategory}:`);
|
|
381
|
-
for (const update of categoryUpdates) {
|
|
382
|
-
relinka(
|
|
383
|
-
"log",
|
|
384
|
-
` ${update.package}: ${update.currentVersion} \u2192 ${update.latestVersion}`
|
|
385
|
-
);
|
|
386
|
-
}
|
|
387
|
-
}
|
|
388
|
-
}
|
|
389
|
-
}
|
|
390
|
-
const errorsInFile = fileResults.filter((r) => r.error);
|
|
391
|
-
if (errorsInFile.length > 0) {
|
|
392
|
-
relinka("warn", ` * ${errorsInFile.length} deps failed to check:`);
|
|
393
|
-
for (const error of errorsInFile) {
|
|
394
|
-
relinka("warn", ` ${error.package}: ${error.error}`);
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
relinka("log", "");
|
|
398
|
-
}
|
|
399
|
-
if (toUpdate.length === 0) {
|
|
400
|
-
relinka("log", `All ${upToDate.length} dependencies are already up to date`);
|
|
401
|
-
} else {
|
|
402
|
-
relinka(
|
|
403
|
-
"success",
|
|
404
|
-
`Summary: ${toUpdate.length} dependencies can be updated across ${packageJsonFiles.length} package.json files`
|
|
405
|
-
);
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
export async function runInstallCommand(packageManager) {
|
|
409
|
-
try {
|
|
410
|
-
switch (packageManager.name) {
|
|
411
|
-
case "bun":
|
|
412
|
-
await $`bun install`;
|
|
413
|
-
break;
|
|
414
|
-
case "npm":
|
|
415
|
-
await $`npm install`;
|
|
416
|
-
break;
|
|
417
|
-
case "yarn":
|
|
418
|
-
await $`yarn install`;
|
|
419
|
-
break;
|
|
420
|
-
case "pnpm":
|
|
421
|
-
await $`pnpm install`;
|
|
422
|
-
break;
|
|
423
|
-
default:
|
|
424
|
-
throw new Error(`Unsupported package manager: ${packageManager.name}`);
|
|
425
|
-
}
|
|
426
|
-
} catch (error) {
|
|
427
|
-
relinka("warn", `Failed to run install command for ${packageManager.name}: ${error}`);
|
|
428
|
-
throw error;
|
|
429
|
-
}
|
|
430
|
-
}
|
|
431
|
-
export async function getPmOptions() {
|
|
432
|
-
const projectPath = getCurrentWorkingDirectory();
|
|
433
|
-
const detectedPMs = await getAllPkgManagers(projectPath);
|
|
434
|
-
const detectedPMMap = new Map(detectedPMs.map((pm) => [pm.packageManager, pm.source]));
|
|
435
|
-
const pmOptions = ["bun", "pnpm", "npm", "yarn"].map((pm) => {
|
|
436
|
-
const option = {
|
|
437
|
-
label: pm,
|
|
438
|
-
value: pm
|
|
439
|
-
};
|
|
440
|
-
const source = detectedPMMap.get(pm);
|
|
441
|
-
if (source && source !== "default") {
|
|
442
|
-
option.hint = "detected";
|
|
443
|
-
}
|
|
444
|
-
return option;
|
|
445
|
-
});
|
|
446
|
-
const defaultValue = [...detectedPMMap.keys()][0] ?? "npm";
|
|
447
|
-
return { pmOptions, defaultValue };
|
|
448
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { Buffer } from "buffer";
|
|
2
|
-
export interface UploadFile {
|
|
3
|
-
name: string;
|
|
4
|
-
data: Buffer;
|
|
5
|
-
type: string;
|
|
6
|
-
}
|
|
7
|
-
export interface UploadResult {
|
|
8
|
-
url: string;
|
|
9
|
-
size: number;
|
|
10
|
-
name: string;
|
|
11
|
-
uuid?: string;
|
|
12
|
-
key?: string;
|
|
13
|
-
}
|
|
14
|
-
export declare function uploadToProvider(files: UploadFile[], provider?: string): Promise<UploadResult[]>;
|
|
15
|
-
export declare function getMimeType(filePath: string): string;
|
|
16
|
-
export declare function readFilesFromPaths(filePaths: string[]): Promise<{
|
|
17
|
-
name: string;
|
|
18
|
-
data: any;
|
|
19
|
-
type: string;
|
|
20
|
-
}[]>;
|