@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
|
@@ -1,641 +0,0 @@
|
|
|
1
|
-
import { promises as fs } from "node:fs";
|
|
2
|
-
import path from "node:path";
|
|
3
|
-
import { relinka } from "@reliverse/relinka";
|
|
4
|
-
import { createJiti } from "jiti";
|
|
5
|
-
async function resolveCrossLibsViaInline(libBinDir, alias = "~", subFolders = ["npm", "jsr"], buildPreExtensions, buildTemplatesDir) {
|
|
6
|
-
const normalizedPath = libBinDir.replace(/\\/g, "/");
|
|
7
|
-
if (!normalizedPath.startsWith("dist-libs") && !normalizedPath.startsWith("dist-jsr") && !normalizedPath.startsWith("dist-npm")) {
|
|
8
|
-
throw new Error(
|
|
9
|
-
`[resolve-cross-libs] libBinDir must start with "dist-libs", "dist-jsr", or "dist-npm", got: ${libBinDir}`
|
|
10
|
-
);
|
|
11
|
-
}
|
|
12
|
-
if (normalizedPath.startsWith("dist-libs")) {
|
|
13
|
-
const pathParts = normalizedPath.replace(/\/$/, "").split("/");
|
|
14
|
-
if (pathParts.length < 4) {
|
|
15
|
-
throw new Error(
|
|
16
|
-
`[resolve-cross-libs] Invalid libBinDir structure: ${libBinDir}, expected dist-libs/<lib>/<subfolder>/bin`
|
|
17
|
-
);
|
|
18
|
-
}
|
|
19
|
-
const currentLib = pathParts[1];
|
|
20
|
-
if (!currentLib) {
|
|
21
|
-
throw new Error(
|
|
22
|
-
`[resolve-cross-libs] Invalid libBinDir structure: ${libBinDir}, could not extract library name`
|
|
23
|
-
);
|
|
24
|
-
}
|
|
25
|
-
const files = await findSourceFiles(libBinDir, buildPreExtensions, buildTemplatesDir);
|
|
26
|
-
const modifiedFiles = [];
|
|
27
|
-
await Promise.all(
|
|
28
|
-
files.map(async (filePath) => {
|
|
29
|
-
const content = await fs.readFile(filePath, "utf-8");
|
|
30
|
-
const processed = await processFileViaInline(
|
|
31
|
-
content,
|
|
32
|
-
currentLib,
|
|
33
|
-
alias,
|
|
34
|
-
subFolders,
|
|
35
|
-
filePath
|
|
36
|
-
);
|
|
37
|
-
if (processed !== content) {
|
|
38
|
-
relinka("verbose", `[resolve-cross-libs] File modified: ${filePath}`);
|
|
39
|
-
await fs.writeFile(filePath, processed, "utf-8");
|
|
40
|
-
modifiedFiles.push(path.resolve(filePath));
|
|
41
|
-
}
|
|
42
|
-
})
|
|
43
|
-
);
|
|
44
|
-
return modifiedFiles;
|
|
45
|
-
}
|
|
46
|
-
return [];
|
|
47
|
-
}
|
|
48
|
-
async function findSourceFiles(dir, buildPreExtensions, buildTemplatesDir) {
|
|
49
|
-
const files = [];
|
|
50
|
-
const entries = await fs.readdir(dir, { withFileTypes: true });
|
|
51
|
-
await Promise.all(
|
|
52
|
-
entries.map(async (entry) => {
|
|
53
|
-
const fullPath = path.join(dir, entry.name);
|
|
54
|
-
if (entry.isDirectory()) {
|
|
55
|
-
const subFiles = await findSourceFiles(fullPath, buildPreExtensions, buildTemplatesDir);
|
|
56
|
-
files.push(...subFiles);
|
|
57
|
-
} else if (entry.isFile()) {
|
|
58
|
-
const ext = path.extname(entry.name).slice(1);
|
|
59
|
-
const isDts = entry.name.endsWith(".d.ts");
|
|
60
|
-
const isInTemplatesDir = fullPath.includes(`/${buildTemplatesDir}/`);
|
|
61
|
-
if (isInTemplatesDir) {
|
|
62
|
-
return;
|
|
63
|
-
}
|
|
64
|
-
if (isDts) {
|
|
65
|
-
files.push(fullPath);
|
|
66
|
-
return;
|
|
67
|
-
}
|
|
68
|
-
if (!buildPreExtensions.includes(ext)) {
|
|
69
|
-
return;
|
|
70
|
-
}
|
|
71
|
-
if (ext === "js" || ext === "ts") {
|
|
72
|
-
files.push(fullPath);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
})
|
|
76
|
-
);
|
|
77
|
-
return files;
|
|
78
|
-
}
|
|
79
|
-
function escapeRegex(str) {
|
|
80
|
-
if (!str || typeof str !== "string") {
|
|
81
|
-
return "";
|
|
82
|
-
}
|
|
83
|
-
return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
84
|
-
}
|
|
85
|
-
async function processFileViaInline(content, currentLib, alias, subFolders, currentFilePath) {
|
|
86
|
-
const lines = content.split("\n");
|
|
87
|
-
const result = [];
|
|
88
|
-
let insideInlined = false;
|
|
89
|
-
for (const line of lines) {
|
|
90
|
-
if (line.includes("/* inlined-start ")) {
|
|
91
|
-
insideInlined = true;
|
|
92
|
-
relinka("verbose", `[resolve-cross-libs] Entering inlined block: ${line.trim()}`);
|
|
93
|
-
result.push(line);
|
|
94
|
-
continue;
|
|
95
|
-
}
|
|
96
|
-
if (line.includes("/* inlined-end */")) {
|
|
97
|
-
insideInlined = false;
|
|
98
|
-
result.push(line);
|
|
99
|
-
continue;
|
|
100
|
-
}
|
|
101
|
-
if (insideInlined) {
|
|
102
|
-
result.push(line);
|
|
103
|
-
continue;
|
|
104
|
-
}
|
|
105
|
-
const pattern = new RegExp(
|
|
106
|
-
`^(\\s*)((?:export\\s+.*?\\s+from|import\\s+.*?\\s+from)\\s+(['"])${escapeRegex(alias)}/libs/([^/]+)/([^'"]*?)\\3[^;]*;?)(\\s*//.*)?\\s*$`
|
|
107
|
-
);
|
|
108
|
-
const match = line.match(pattern);
|
|
109
|
-
if (match) {
|
|
110
|
-
const [, indentation, fullStatement, quote, libName, rest, comment] = match;
|
|
111
|
-
relinka("verbose", `[resolve-cross-libs] Processing import/export: ${libName}/${rest}`);
|
|
112
|
-
if (fullStatement?.includes(`${quote}./`)) {
|
|
113
|
-
result.push(line);
|
|
114
|
-
continue;
|
|
115
|
-
}
|
|
116
|
-
if (libName === currentLib) {
|
|
117
|
-
const newStatement = fullStatement?.replace(`${quote}${alias}/libs/${libName}/`, `${quote}./`) ?? "";
|
|
118
|
-
result.push(`${indentation}${newStatement}${comment || ""}`);
|
|
119
|
-
} else {
|
|
120
|
-
try {
|
|
121
|
-
if (!libName || !rest) {
|
|
122
|
-
throw new Error("Library name or path is undefined");
|
|
123
|
-
}
|
|
124
|
-
relinka("verbose", `[resolve-cross-libs] Attempting to inline: ${libName}/${rest}`);
|
|
125
|
-
const targetPath = await resolveTargetFile(libName, rest, subFolders, currentFilePath);
|
|
126
|
-
const targetContent = await fs.readFile(targetPath, "utf-8");
|
|
127
|
-
result.push(`${indentation}/* inlined-start ${alias}/libs/${libName}/${rest} */`);
|
|
128
|
-
const targetLines = targetContent.split("\n");
|
|
129
|
-
relinka(
|
|
130
|
-
"log",
|
|
131
|
-
`[resolve-cross-libs] Inlining ${targetLines.length} lines from ${targetPath}`
|
|
132
|
-
);
|
|
133
|
-
for (const targetLine of targetLines) {
|
|
134
|
-
result.push(`${indentation}${targetLine}`);
|
|
135
|
-
}
|
|
136
|
-
result.push(`${indentation}/* inlined-end */`);
|
|
137
|
-
} catch (error) {
|
|
138
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
139
|
-
relinka(
|
|
140
|
-
"error",
|
|
141
|
-
`[resolve-cross-libs] Failed to inline ${alias}/libs/${libName}/${rest}: ${errorMessage}`
|
|
142
|
-
);
|
|
143
|
-
throw error;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
} else {
|
|
147
|
-
result.push(line);
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
return result.join("\n");
|
|
151
|
-
}
|
|
152
|
-
async function resolveTargetFile(libName, rest, subFolders, currentFilePath) {
|
|
153
|
-
relinka("verbose", `[resolve-cross-libs] Resolving target file for ${libName}/${rest}`);
|
|
154
|
-
const isCurrentFileDts = currentFilePath.endsWith(".d.ts");
|
|
155
|
-
const extensions = isCurrentFileDts ? [".d.ts", ".ts", ".js"] : [".ts", ".js", ".d.ts"];
|
|
156
|
-
for (const subFolder of subFolders) {
|
|
157
|
-
const basePath = path.join("dist-libs", libName, subFolder, "bin", rest);
|
|
158
|
-
for (const ext of extensions) {
|
|
159
|
-
const fullPath = `${basePath}${ext}`;
|
|
160
|
-
try {
|
|
161
|
-
await fs.access(fullPath);
|
|
162
|
-
return fullPath;
|
|
163
|
-
} catch {
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
throw new Error(
|
|
168
|
-
`Could not resolve target file for libs/${libName}/${rest} in any subfolder: ${subFolders.join(", ")}`
|
|
169
|
-
);
|
|
170
|
-
}
|
|
171
|
-
async function directoryExists(dirPath) {
|
|
172
|
-
try {
|
|
173
|
-
const stat = await fs.stat(dirPath);
|
|
174
|
-
return stat.isDirectory();
|
|
175
|
-
} catch (error) {
|
|
176
|
-
if (error instanceof Error && error.code === "ENOENT") {
|
|
177
|
-
return false;
|
|
178
|
-
}
|
|
179
|
-
throw error;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
async function resolveAllCrossLibsViaInline(alias = "~", subFolders = ["npm", "jsr"], buildPreExtensions, buildTemplatesDir) {
|
|
183
|
-
const distLibsDir = "dist-libs";
|
|
184
|
-
const allModifiedFiles = [];
|
|
185
|
-
const distLibsExists = await directoryExists(distLibsDir);
|
|
186
|
-
if (distLibsExists) {
|
|
187
|
-
const entries = await fs.readdir(distLibsDir, { withFileTypes: true });
|
|
188
|
-
const libDirs = entries.filter((entry) => entry.isDirectory()).map((entry) => entry.name);
|
|
189
|
-
await Promise.all(
|
|
190
|
-
libDirs.map(async (libName) => {
|
|
191
|
-
for (const subFolder of subFolders) {
|
|
192
|
-
const binDir = path.join(distLibsDir, libName, subFolder, "bin");
|
|
193
|
-
const binDirExists = await directoryExists(binDir);
|
|
194
|
-
if (binDirExists) {
|
|
195
|
-
try {
|
|
196
|
-
const modifiedFiles = await resolveCrossLibsViaInline(
|
|
197
|
-
binDir,
|
|
198
|
-
alias,
|
|
199
|
-
subFolders,
|
|
200
|
-
buildPreExtensions,
|
|
201
|
-
buildTemplatesDir
|
|
202
|
-
);
|
|
203
|
-
allModifiedFiles.push(...modifiedFiles);
|
|
204
|
-
} catch (error) {
|
|
205
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
206
|
-
relinka(
|
|
207
|
-
"error",
|
|
208
|
-
`[resolveAllCrossLibsViaInline] Error processing ${binDir}: ${errorMessage}`
|
|
209
|
-
);
|
|
210
|
-
throw error;
|
|
211
|
-
}
|
|
212
|
-
} else {
|
|
213
|
-
}
|
|
214
|
-
}
|
|
215
|
-
})
|
|
216
|
-
);
|
|
217
|
-
}
|
|
218
|
-
if (allModifiedFiles.length > 0) {
|
|
219
|
-
relinka("info", "[resolveAllCrossLibsViaInline] Cross libraries replacements done in:");
|
|
220
|
-
relinka("verbose", "[resolveAllCrossLibsViaInline] " + allModifiedFiles.join(", "));
|
|
221
|
-
}
|
|
222
|
-
return allModifiedFiles;
|
|
223
|
-
}
|
|
224
|
-
async function resolveCrossLibsViaCopy(libBinDir, alias = "~", subFolders = ["npm", "jsr"], buildPreExtensions, buildTemplatesDir) {
|
|
225
|
-
const normalizedPath = libBinDir.replace(/\\/g, "/");
|
|
226
|
-
if (!normalizedPath.startsWith("dist-libs") && !normalizedPath.startsWith("dist-jsr") && !normalizedPath.startsWith("dist-npm")) {
|
|
227
|
-
throw new Error(
|
|
228
|
-
`[resolve-cross-libs] libBinDir must start with "dist-libs", "dist-jsr", or "dist-npm", got: ${libBinDir}`
|
|
229
|
-
);
|
|
230
|
-
}
|
|
231
|
-
if (normalizedPath.startsWith("dist-libs")) {
|
|
232
|
-
const pathParts = normalizedPath.replace(/\/$/, "").split("/");
|
|
233
|
-
if (pathParts.length < 4) {
|
|
234
|
-
throw new Error(
|
|
235
|
-
`[resolve-cross-libs] Invalid libBinDir structure: ${libBinDir}, expected dist-libs/<lib>/<subfolder>/bin`
|
|
236
|
-
);
|
|
237
|
-
}
|
|
238
|
-
const currentLib = pathParts[1];
|
|
239
|
-
const currentSubFolder = pathParts[2];
|
|
240
|
-
if (!currentLib || !currentSubFolder) {
|
|
241
|
-
throw new Error(
|
|
242
|
-
`[resolve-cross-libs] Invalid libBinDir structure: ${libBinDir}, could not extract library name or subfolder`
|
|
243
|
-
);
|
|
244
|
-
}
|
|
245
|
-
const files = await findSourceFiles(libBinDir, buildPreExtensions, buildTemplatesDir);
|
|
246
|
-
const modifiedFiles = [];
|
|
247
|
-
const copiedLibs = /* @__PURE__ */ new Set();
|
|
248
|
-
await Promise.all(
|
|
249
|
-
files.map(async (filePath) => {
|
|
250
|
-
const content = await fs.readFile(filePath, "utf-8");
|
|
251
|
-
const { processed, copiedLibraries } = await processFileViaCopy(
|
|
252
|
-
content,
|
|
253
|
-
currentLib,
|
|
254
|
-
currentSubFolder,
|
|
255
|
-
alias,
|
|
256
|
-
subFolders,
|
|
257
|
-
filePath
|
|
258
|
-
);
|
|
259
|
-
if (processed !== content) {
|
|
260
|
-
relinka("verbose", `[resolveCrossLibsViaCopy] File modified: ${filePath}`);
|
|
261
|
-
await fs.writeFile(filePath, processed, "utf-8");
|
|
262
|
-
modifiedFiles.push(path.resolve(filePath));
|
|
263
|
-
}
|
|
264
|
-
copiedLibraries.forEach((lib) => copiedLibs.add(lib));
|
|
265
|
-
})
|
|
266
|
-
);
|
|
267
|
-
for (const libName of copiedLibs) {
|
|
268
|
-
await copyLibraryDirectory(libName, currentSubFolder, subFolders);
|
|
269
|
-
}
|
|
270
|
-
return modifiedFiles;
|
|
271
|
-
}
|
|
272
|
-
return [];
|
|
273
|
-
}
|
|
274
|
-
async function processFileViaCopy(content, currentLib, _currentSubFolder, alias, _subFolders, _currentFilePath) {
|
|
275
|
-
const lines = content.split("\n");
|
|
276
|
-
const result = [];
|
|
277
|
-
const copiedLibraries = /* @__PURE__ */ new Set();
|
|
278
|
-
for (const line of lines) {
|
|
279
|
-
const pattern = new RegExp(
|
|
280
|
-
`^(\\s*)((?:export\\s+.*?\\s+from|import\\s+.*?\\s+from)\\s+(['"])${escapeRegex(alias)}/libs/([^/]+)/([^'"]*?)\\3[^;]*;?)(\\s*//.*)?\\s*$`
|
|
281
|
-
);
|
|
282
|
-
const match = line.match(pattern);
|
|
283
|
-
if (match) {
|
|
284
|
-
const [, indentation, fullStatement, quote, libName, rest, comment] = match;
|
|
285
|
-
relinka("verbose", `[resolveCrossLibsViaCopy] Processing import/export: ${libName}/${rest}`);
|
|
286
|
-
if (fullStatement?.includes(`${quote}./`)) {
|
|
287
|
-
result.push(line);
|
|
288
|
-
continue;
|
|
289
|
-
}
|
|
290
|
-
if (libName === currentLib) {
|
|
291
|
-
const newStatement = fullStatement?.replace(`${quote}${alias}/libs/${libName}/`, `${quote}./`) ?? "";
|
|
292
|
-
result.push(`${indentation}${newStatement}${comment || ""}`);
|
|
293
|
-
} else {
|
|
294
|
-
try {
|
|
295
|
-
if (!libName || !rest) {
|
|
296
|
-
throw new Error("Library name or path is undefined");
|
|
297
|
-
}
|
|
298
|
-
relinka(
|
|
299
|
-
"verbose",
|
|
300
|
-
`[resolveCrossLibsViaCopy] Rewriting to copied path: ${libName}/${rest}`
|
|
301
|
-
);
|
|
302
|
-
copiedLibraries.add(libName);
|
|
303
|
-
const newStatement = fullStatement?.replace(
|
|
304
|
-
`${quote}${alias}/libs/${libName}/`,
|
|
305
|
-
`${quote}../#${libName}/`
|
|
306
|
-
) ?? "";
|
|
307
|
-
result.push(`${indentation}${newStatement}${comment || ""}`);
|
|
308
|
-
} catch (error) {
|
|
309
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
310
|
-
relinka(
|
|
311
|
-
"error",
|
|
312
|
-
`[resolveCrossLibsViaCopy] Failed to rewrite ${alias}/libs/${libName}/${rest}: ${errorMessage}`
|
|
313
|
-
);
|
|
314
|
-
throw error;
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
} else {
|
|
318
|
-
result.push(line);
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
return { processed: result.join("\n"), copiedLibraries };
|
|
322
|
-
}
|
|
323
|
-
async function copyLibraryDirectory(libName, _currentSubFolder, _subFolders) {
|
|
324
|
-
const sourceDir = path.join("dist-libs", libName);
|
|
325
|
-
const targetDir = path.join("dist-libs", `#${libName}`);
|
|
326
|
-
try {
|
|
327
|
-
await fs.access(targetDir);
|
|
328
|
-
relinka(
|
|
329
|
-
"verbose",
|
|
330
|
-
`[resolveCrossLibsViaCopy] Library ${libName} already copied to ${targetDir}`
|
|
331
|
-
);
|
|
332
|
-
return;
|
|
333
|
-
} catch {
|
|
334
|
-
}
|
|
335
|
-
try {
|
|
336
|
-
relinka(
|
|
337
|
-
"log",
|
|
338
|
-
`[resolveCrossLibsViaCopy] Copying library ${libName} from ${sourceDir} to ${targetDir}`
|
|
339
|
-
);
|
|
340
|
-
await copyDirectoryRecursive(sourceDir, targetDir);
|
|
341
|
-
relinka("verbose", `[resolveCrossLibsViaCopy] Successfully copied library ${libName}`);
|
|
342
|
-
} catch (error) {
|
|
343
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
344
|
-
relinka(
|
|
345
|
-
"error",
|
|
346
|
-
`[resolveCrossLibsViaCopy] Failed to copy library ${libName}: ${errorMessage}`
|
|
347
|
-
);
|
|
348
|
-
throw error;
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
async function copyDirectoryRecursive(source, target) {
|
|
352
|
-
await fs.mkdir(target, { recursive: true });
|
|
353
|
-
const entries = await fs.readdir(source, { withFileTypes: true });
|
|
354
|
-
for (const entry of entries) {
|
|
355
|
-
const sourcePath = path.join(source, entry.name);
|
|
356
|
-
const targetPath = path.join(target, entry.name);
|
|
357
|
-
if (entry.isDirectory()) {
|
|
358
|
-
await copyDirectoryRecursive(sourcePath, targetPath);
|
|
359
|
-
} else {
|
|
360
|
-
await fs.copyFile(sourcePath, targetPath);
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
|
-
async function resolveAllCrossLibsViaCopy(alias = "~", subFolders = ["npm", "jsr"], buildPreExtensions, buildTemplatesDir) {
|
|
365
|
-
const distLibsDir = "dist-libs";
|
|
366
|
-
const allModifiedFiles = [];
|
|
367
|
-
const distLibsExists = await directoryExists(distLibsDir);
|
|
368
|
-
if (distLibsExists) {
|
|
369
|
-
const entries = await fs.readdir(distLibsDir, { withFileTypes: true });
|
|
370
|
-
const libDirs = entries.filter((entry) => entry.isDirectory()).map((entry) => entry.name);
|
|
371
|
-
await Promise.all(
|
|
372
|
-
libDirs.map(async (libName) => {
|
|
373
|
-
for (const subFolder of subFolders) {
|
|
374
|
-
const binDir = path.join(distLibsDir, libName, subFolder, "bin");
|
|
375
|
-
const binDirExists = await directoryExists(binDir);
|
|
376
|
-
if (binDirExists) {
|
|
377
|
-
try {
|
|
378
|
-
const modifiedFiles = await resolveCrossLibsViaCopy(
|
|
379
|
-
binDir,
|
|
380
|
-
alias,
|
|
381
|
-
subFolders,
|
|
382
|
-
buildPreExtensions,
|
|
383
|
-
buildTemplatesDir
|
|
384
|
-
);
|
|
385
|
-
allModifiedFiles.push(...modifiedFiles);
|
|
386
|
-
} catch (error) {
|
|
387
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
388
|
-
relinka(
|
|
389
|
-
"error",
|
|
390
|
-
`[resolveAllCrossLibsViaCopy] Error processing ${binDir}: ${errorMessage}`
|
|
391
|
-
);
|
|
392
|
-
throw error;
|
|
393
|
-
}
|
|
394
|
-
} else {
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
})
|
|
398
|
-
);
|
|
399
|
-
}
|
|
400
|
-
if (allModifiedFiles.length > 0) {
|
|
401
|
-
relinka("info", "[resolveAllCrossLibsViaCopy] Cross libraries copy replacements done in:");
|
|
402
|
-
relinka("verbose", "[resolveAllCrossLibsViaCopy] " + allModifiedFiles.join(", "));
|
|
403
|
-
}
|
|
404
|
-
return allModifiedFiles;
|
|
405
|
-
}
|
|
406
|
-
export async function resolveAllCrossLibs(strategy = "inline", alias = "~", subFolders = ["npm", "jsr"], buildPreExtensions, buildTemplatesDir) {
|
|
407
|
-
switch (strategy) {
|
|
408
|
-
case "inline":
|
|
409
|
-
return await resolveAllCrossLibsViaInline(
|
|
410
|
-
alias,
|
|
411
|
-
subFolders,
|
|
412
|
-
buildPreExtensions,
|
|
413
|
-
buildTemplatesDir
|
|
414
|
-
);
|
|
415
|
-
case "copy":
|
|
416
|
-
return await resolveAllCrossLibsViaCopy(
|
|
417
|
-
alias,
|
|
418
|
-
subFolders,
|
|
419
|
-
buildPreExtensions,
|
|
420
|
-
buildTemplatesDir
|
|
421
|
-
);
|
|
422
|
-
case "package":
|
|
423
|
-
return await resolveAllCrossLibsViaPackage(
|
|
424
|
-
alias,
|
|
425
|
-
subFolders,
|
|
426
|
-
buildPreExtensions,
|
|
427
|
-
buildTemplatesDir
|
|
428
|
-
);
|
|
429
|
-
default:
|
|
430
|
-
throw new Error(
|
|
431
|
-
`[resolveAllCrossLibs] Unknown strategy: ${strategy}. Supported strategies: inline, copy, package`
|
|
432
|
-
);
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
async function loadReliverseConfig() {
|
|
436
|
-
try {
|
|
437
|
-
const jiti = createJiti(import.meta.url);
|
|
438
|
-
const config = await jiti.import("reliverse.ts", { default: true });
|
|
439
|
-
return { libsList: config?.libsList || {} };
|
|
440
|
-
} catch (error) {
|
|
441
|
-
relinka(
|
|
442
|
-
"error",
|
|
443
|
-
`[resolveCrossLibsViaPackage] Failed to load dler config: ${error instanceof Error ? error.message : String(error)}`
|
|
444
|
-
);
|
|
445
|
-
return { libsList: {} };
|
|
446
|
-
}
|
|
447
|
-
}
|
|
448
|
-
function createLibDirToPackageMap(libsList) {
|
|
449
|
-
const mapping = {};
|
|
450
|
-
for (const [packageName, libConfig] of Object.entries(libsList)) {
|
|
451
|
-
if (libConfig?.libDirName) {
|
|
452
|
-
mapping[libConfig.libDirName] = packageName;
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
return mapping;
|
|
456
|
-
}
|
|
457
|
-
async function addDependencyToPackageJson(packageJsonPath, packageName, dependencyType = "dependencies") {
|
|
458
|
-
try {
|
|
459
|
-
const packageJsonContent = await fs.readFile(packageJsonPath, "utf-8");
|
|
460
|
-
const packageJson = JSON.parse(packageJsonContent);
|
|
461
|
-
if (!packageJson[dependencyType]) {
|
|
462
|
-
packageJson[dependencyType] = {};
|
|
463
|
-
}
|
|
464
|
-
if (!packageJson[dependencyType][packageName]) {
|
|
465
|
-
packageJson[dependencyType][packageName] = "*";
|
|
466
|
-
relinka(
|
|
467
|
-
"log",
|
|
468
|
-
`[resolveCrossLibsViaPackage] Added ${packageName} to ${dependencyType} in ${packageJsonPath}`
|
|
469
|
-
);
|
|
470
|
-
await fs.writeFile(packageJsonPath, JSON.stringify(packageJson, null, 2), "utf-8");
|
|
471
|
-
} else {
|
|
472
|
-
relinka(
|
|
473
|
-
"log",
|
|
474
|
-
`[resolveCrossLibsViaPackage] ${packageName} already exists in ${dependencyType} in ${packageJsonPath}`
|
|
475
|
-
);
|
|
476
|
-
}
|
|
477
|
-
} catch (error) {
|
|
478
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
479
|
-
relinka(
|
|
480
|
-
"error",
|
|
481
|
-
`[resolveCrossLibsViaPackage] Failed to add dependency ${packageName} to ${packageJsonPath}: ${errorMessage}`
|
|
482
|
-
);
|
|
483
|
-
throw error;
|
|
484
|
-
}
|
|
485
|
-
}
|
|
486
|
-
async function resolveCrossLibsViaPackage(libBinDir, alias = "~", buildPreExtensions, buildTemplatesDir) {
|
|
487
|
-
const normalizedPath = libBinDir.replace(/\\/g, "/");
|
|
488
|
-
if (!normalizedPath.startsWith("dist-libs") && !normalizedPath.startsWith("dist-jsr") && !normalizedPath.startsWith("dist-npm")) {
|
|
489
|
-
throw new Error(
|
|
490
|
-
`[resolve-cross-libs] libBinDir must start with "dist-libs", "dist-jsr", or "dist-npm", got: ${libBinDir}`
|
|
491
|
-
);
|
|
492
|
-
}
|
|
493
|
-
if (normalizedPath.startsWith("dist-libs")) {
|
|
494
|
-
const pathParts = normalizedPath.replace(/\/$/, "").split("/");
|
|
495
|
-
if (pathParts.length < 4) {
|
|
496
|
-
throw new Error(
|
|
497
|
-
`[resolve-cross-libs] Invalid libBinDir structure: ${libBinDir}, expected dist-libs/<lib>/<subfolder>/bin`
|
|
498
|
-
);
|
|
499
|
-
}
|
|
500
|
-
const currentLib = pathParts[1];
|
|
501
|
-
const currentSubFolder = pathParts[2];
|
|
502
|
-
if (!currentLib || !currentSubFolder) {
|
|
503
|
-
throw new Error(
|
|
504
|
-
`[resolve-cross-libs] Invalid libBinDir structure: ${libBinDir}, could not extract library name or subfolder`
|
|
505
|
-
);
|
|
506
|
-
}
|
|
507
|
-
const { libsList } = await loadReliverseConfig();
|
|
508
|
-
const libDirToPackageMap = createLibDirToPackageMap(libsList);
|
|
509
|
-
const files = await findSourceFiles(libBinDir, buildPreExtensions, buildTemplatesDir);
|
|
510
|
-
const modifiedFiles = [];
|
|
511
|
-
const addedDependencies = /* @__PURE__ */ new Set();
|
|
512
|
-
await Promise.all(
|
|
513
|
-
files.map(async (filePath) => {
|
|
514
|
-
const content = await fs.readFile(filePath, "utf-8");
|
|
515
|
-
const { processed, dependencies } = await processFileViaPackage(
|
|
516
|
-
content,
|
|
517
|
-
currentLib,
|
|
518
|
-
alias,
|
|
519
|
-
libDirToPackageMap
|
|
520
|
-
);
|
|
521
|
-
if (processed !== content) {
|
|
522
|
-
relinka("verbose", `[resolveCrossLibsViaPackage] File modified: ${filePath}`);
|
|
523
|
-
await fs.writeFile(filePath, processed, "utf-8");
|
|
524
|
-
modifiedFiles.push(path.resolve(filePath));
|
|
525
|
-
}
|
|
526
|
-
dependencies.forEach((dep) => addedDependencies.add(dep));
|
|
527
|
-
})
|
|
528
|
-
);
|
|
529
|
-
const packageJsonPath = path.join(path.dirname(libBinDir), "package.json");
|
|
530
|
-
for (const packageName of addedDependencies) {
|
|
531
|
-
await addDependencyToPackageJson(packageJsonPath, packageName);
|
|
532
|
-
}
|
|
533
|
-
return modifiedFiles;
|
|
534
|
-
}
|
|
535
|
-
return [];
|
|
536
|
-
}
|
|
537
|
-
async function processFileViaPackage(content, currentLib, alias, libDirToPackageMap) {
|
|
538
|
-
const lines = content.split("\n");
|
|
539
|
-
const result = [];
|
|
540
|
-
const dependencies = /* @__PURE__ */ new Set();
|
|
541
|
-
for (const line of lines) {
|
|
542
|
-
const pattern = new RegExp(
|
|
543
|
-
`^(\\s*)((?:export\\s+.*?\\s+from|import\\s+.*?\\s+from)\\s+(['"])${escapeRegex(alias)}/libs/([^/]+)/([^'"]*?)\\3[^;]*;?)(\\s*//.*)?\\s*$`
|
|
544
|
-
);
|
|
545
|
-
const match = line.match(pattern);
|
|
546
|
-
if (match) {
|
|
547
|
-
const [, indentation, fullStatement, quote, libName, rest, comment] = match;
|
|
548
|
-
relinka(
|
|
549
|
-
"verbose",
|
|
550
|
-
`[resolveCrossLibsViaPackage] Processing import/export: ${libName}/${rest}`
|
|
551
|
-
);
|
|
552
|
-
if (fullStatement?.includes(`${quote}./`)) {
|
|
553
|
-
result.push(line);
|
|
554
|
-
continue;
|
|
555
|
-
}
|
|
556
|
-
if (libName === currentLib) {
|
|
557
|
-
const newStatement = fullStatement?.replace(`${quote}${alias}/libs/${libName}/`, `${quote}./`) ?? "";
|
|
558
|
-
result.push(`${indentation}${newStatement}${comment || ""}`);
|
|
559
|
-
} else {
|
|
560
|
-
try {
|
|
561
|
-
if (!libName || !rest) {
|
|
562
|
-
throw new Error("Library name or path is undefined");
|
|
563
|
-
}
|
|
564
|
-
const packageName = libDirToPackageMap[libName];
|
|
565
|
-
if (!packageName) {
|
|
566
|
-
relinka(
|
|
567
|
-
"warn",
|
|
568
|
-
`[resolveCrossLibsViaPackage] No package name found for libDirName: ${libName}`
|
|
569
|
-
);
|
|
570
|
-
result.push(line);
|
|
571
|
-
continue;
|
|
572
|
-
}
|
|
573
|
-
relinka(
|
|
574
|
-
"log",
|
|
575
|
-
`[resolveCrossLibsViaPackage] Rewriting to package name: ${libName}/${rest} -> ${packageName}`
|
|
576
|
-
);
|
|
577
|
-
dependencies.add(packageName);
|
|
578
|
-
const newStatement = fullStatement?.replace(
|
|
579
|
-
`${quote}${alias}/libs/${libName}/`,
|
|
580
|
-
`${quote}${packageName}/`
|
|
581
|
-
) ?? "";
|
|
582
|
-
result.push(`${indentation}${newStatement}${comment || ""}`);
|
|
583
|
-
} catch (error) {
|
|
584
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
585
|
-
relinka(
|
|
586
|
-
"error",
|
|
587
|
-
`[resolveCrossLibsViaPackage] Failed to rewrite ${alias}/libs/${libName}/${rest}: ${errorMessage}`
|
|
588
|
-
);
|
|
589
|
-
throw error;
|
|
590
|
-
}
|
|
591
|
-
}
|
|
592
|
-
} else {
|
|
593
|
-
result.push(line);
|
|
594
|
-
}
|
|
595
|
-
}
|
|
596
|
-
return { processed: result.join("\n"), dependencies };
|
|
597
|
-
}
|
|
598
|
-
async function resolveAllCrossLibsViaPackage(alias = "~", subFolders = ["npm", "jsr"], buildPreExtensions, buildTemplatesDir) {
|
|
599
|
-
const distLibsDir = "dist-libs";
|
|
600
|
-
const allModifiedFiles = [];
|
|
601
|
-
const distLibsExists = await directoryExists(distLibsDir);
|
|
602
|
-
if (distLibsExists) {
|
|
603
|
-
const entries = await fs.readdir(distLibsDir, { withFileTypes: true });
|
|
604
|
-
const libDirs = entries.filter((entry) => entry.isDirectory()).map((entry) => entry.name);
|
|
605
|
-
await Promise.all(
|
|
606
|
-
libDirs.map(async (libName) => {
|
|
607
|
-
for (const subFolder of subFolders) {
|
|
608
|
-
const binDir = path.join(distLibsDir, libName, subFolder, "bin");
|
|
609
|
-
const binDirExists = await directoryExists(binDir);
|
|
610
|
-
if (binDirExists) {
|
|
611
|
-
try {
|
|
612
|
-
const modifiedFiles = await resolveCrossLibsViaPackage(
|
|
613
|
-
binDir,
|
|
614
|
-
alias,
|
|
615
|
-
buildPreExtensions,
|
|
616
|
-
buildTemplatesDir
|
|
617
|
-
);
|
|
618
|
-
allModifiedFiles.push(...modifiedFiles);
|
|
619
|
-
} catch (error) {
|
|
620
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
621
|
-
relinka(
|
|
622
|
-
"error",
|
|
623
|
-
`[resolveAllCrossLibsViaPackage] Error processing ${binDir}: ${errorMessage}`
|
|
624
|
-
);
|
|
625
|
-
throw error;
|
|
626
|
-
}
|
|
627
|
-
} else {
|
|
628
|
-
}
|
|
629
|
-
}
|
|
630
|
-
})
|
|
631
|
-
);
|
|
632
|
-
}
|
|
633
|
-
if (allModifiedFiles.length > 0) {
|
|
634
|
-
relinka(
|
|
635
|
-
"info",
|
|
636
|
-
"[resolveAllCrossLibsViaPackage] Cross libraries package replacements done in:"
|
|
637
|
-
);
|
|
638
|
-
relinka("verbose", "[resolveAllCrossLibsViaPackage] " + allModifiedFiles.join(", "));
|
|
639
|
-
}
|
|
640
|
-
return allModifiedFiles;
|
|
641
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export interface EncryptedDataMemoryShape {
|
|
2
|
-
code: string;
|
|
3
|
-
key: string;
|
|
4
|
-
githubKey?: string;
|
|
5
|
-
vercelKey?: string;
|
|
6
|
-
openaiKey?: string;
|
|
7
|
-
}
|
|
8
|
-
export interface UserDataMemoryShape {
|
|
9
|
-
name?: string;
|
|
10
|
-
email?: string;
|
|
11
|
-
githubUsername?: string;
|
|
12
|
-
vercelTeamId?: string;
|
|
13
|
-
vercelTeamSlug?: string;
|
|
14
|
-
}
|
|
15
|
-
export type ReliverseMemory = EncryptedDataMemoryShape & UserDataMemoryShape;
|
|
16
|
-
export type EncryptedDataMemory = keyof EncryptedDataMemoryShape;
|
|
17
|
-
export type UserDataMemory = keyof UserDataMemoryShape;
|
|
File without changes
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
export interface RepoInfo {
|
|
2
|
-
id: string;
|
|
3
|
-
author: string;
|
|
4
|
-
name: string;
|
|
5
|
-
description: string;
|
|
6
|
-
category: string;
|
|
7
|
-
lastUpdated: string;
|
|
8
|
-
localPath: string;
|
|
9
|
-
github: {
|
|
10
|
-
stars: number;
|
|
11
|
-
forks: number;
|
|
12
|
-
watchers: number;
|
|
13
|
-
createdAt: string;
|
|
14
|
-
updatedAt: string;
|
|
15
|
-
pushedAt: string;
|
|
16
|
-
defaultBranch: string;
|
|
17
|
-
};
|
|
18
|
-
}
|
|
19
|
-
export interface ReposConfig {
|
|
20
|
-
$schema: string;
|
|
21
|
-
version: string;
|
|
22
|
-
repos: RepoInfo[];
|
|
23
|
-
}
|
|
24
|
-
export declare const DEFAULT_REPOS_CONFIG: ReposConfig;
|
|
25
|
-
export declare function isReposConfig(value: unknown): value is ReposConfig;
|
|
26
|
-
export declare function generateReposJsonSchema(): Promise<void>;
|
|
27
|
-
export declare function shouldRegenerateSchema(): Promise<boolean>;
|