@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,98 +0,0 @@
|
|
|
1
|
-
import path from "@reliverse/pathkit";
|
|
2
|
-
import fs, { ensuredir } from "@reliverse/relifso";
|
|
3
|
-
import { cliHomeRepos, cliVersion } from "../config/constants.js";
|
|
4
|
-
export const DEFAULT_REPOS_CONFIG = {
|
|
5
|
-
$schema: "./schema.json",
|
|
6
|
-
version: cliVersion,
|
|
7
|
-
repos: []
|
|
8
|
-
};
|
|
9
|
-
function isObject(value) {
|
|
10
|
-
return typeof value === "object" && value !== null;
|
|
11
|
-
}
|
|
12
|
-
function isRepoInfo(value) {
|
|
13
|
-
if (!isObject(value)) return false;
|
|
14
|
-
const v = value;
|
|
15
|
-
const github = v.github;
|
|
16
|
-
return typeof v.id === "string" && typeof v.author === "string" && typeof v.name === "string" && typeof v.description === "string" && typeof v.category === "string" && typeof v.lastUpdated === "string" && typeof v.localPath === "string" && isObject(github) && typeof github.stars === "number" && typeof github.forks === "number" && typeof github.watchers === "number" && typeof github.createdAt === "string" && typeof github.updatedAt === "string" && typeof github.pushedAt === "string" && typeof github.defaultBranch === "string";
|
|
17
|
-
}
|
|
18
|
-
export function isReposConfig(value) {
|
|
19
|
-
if (!isObject(value)) return false;
|
|
20
|
-
const v = value;
|
|
21
|
-
return typeof v.$schema === "string" && typeof v.version === "string" && Array.isArray(v.repos) && v.repos.every((r) => isRepoInfo(r));
|
|
22
|
-
}
|
|
23
|
-
export async function generateReposJsonSchema() {
|
|
24
|
-
const schema = {
|
|
25
|
-
$schema: "http://json-schema.org/draft-07/schema#",
|
|
26
|
-
title: "rse Repos Schema",
|
|
27
|
-
description: "Schema for repos.json configuration file",
|
|
28
|
-
type: "object",
|
|
29
|
-
properties: {
|
|
30
|
-
$schema: { type: "string" },
|
|
31
|
-
version: { type: "string" },
|
|
32
|
-
repos: {
|
|
33
|
-
type: "array",
|
|
34
|
-
items: {
|
|
35
|
-
type: "object",
|
|
36
|
-
properties: {
|
|
37
|
-
id: { type: "string" },
|
|
38
|
-
author: { type: "string" },
|
|
39
|
-
name: { type: "string" },
|
|
40
|
-
description: { type: "string" },
|
|
41
|
-
category: { type: "string" },
|
|
42
|
-
lastUpdated: { type: "string" },
|
|
43
|
-
localPath: { type: "string" },
|
|
44
|
-
github: {
|
|
45
|
-
type: "object",
|
|
46
|
-
properties: {
|
|
47
|
-
stars: { type: "number" },
|
|
48
|
-
forks: { type: "number" },
|
|
49
|
-
watchers: { type: "number" },
|
|
50
|
-
createdAt: { type: "string" },
|
|
51
|
-
updatedAt: { type: "string" },
|
|
52
|
-
pushedAt: { type: "string" },
|
|
53
|
-
defaultBranch: { type: "string" }
|
|
54
|
-
},
|
|
55
|
-
required: [
|
|
56
|
-
"stars",
|
|
57
|
-
"forks",
|
|
58
|
-
"watchers",
|
|
59
|
-
"createdAt",
|
|
60
|
-
"updatedAt",
|
|
61
|
-
"pushedAt",
|
|
62
|
-
"defaultBranch"
|
|
63
|
-
]
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
required: [
|
|
67
|
-
"id",
|
|
68
|
-
"author",
|
|
69
|
-
"name",
|
|
70
|
-
"description",
|
|
71
|
-
"category",
|
|
72
|
-
"lastUpdated",
|
|
73
|
-
"localPath",
|
|
74
|
-
"github"
|
|
75
|
-
]
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
required: ["$schema", "version", "repos"],
|
|
80
|
-
additionalProperties: false
|
|
81
|
-
};
|
|
82
|
-
await ensuredir(cliHomeRepos);
|
|
83
|
-
const schemaPath = path.join(cliHomeRepos, "schema.json");
|
|
84
|
-
await fs.writeFile(schemaPath, JSON.stringify(schema, null, 2));
|
|
85
|
-
}
|
|
86
|
-
export async function shouldRegenerateSchema() {
|
|
87
|
-
const configPath = path.join(cliHomeRepos, "repos.json");
|
|
88
|
-
if (!await fs.pathExists(configPath)) {
|
|
89
|
-
return true;
|
|
90
|
-
}
|
|
91
|
-
try {
|
|
92
|
-
const content = await fs.readFile(configPath, "utf-8");
|
|
93
|
-
const config = JSON.parse(content);
|
|
94
|
-
return config.version !== cliVersion;
|
|
95
|
-
} catch {
|
|
96
|
-
return true;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare function readLocalPackageJSON(): Promise<{
|
|
2
|
-
name?: string;
|
|
3
|
-
version?: string;
|
|
4
|
-
}>;
|
|
5
|
-
export declare const getPkgName: () => Promise<string>;
|
|
6
|
-
export declare const getPkgVersion: () => Promise<string>;
|
|
7
|
-
export declare function showStartPrompt(isDev: boolean, showRuntimeInfo: boolean, clearConsole: boolean): Promise<void>;
|
|
8
|
-
export declare function showEndPrompt(): Promise<void>;
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import { dirname } from "node:path";
|
|
2
|
-
import { relinka } from "@reliverse/relinka";
|
|
3
|
-
import { endPrompt, startPrompt } from "@reliverse/rempts";
|
|
4
|
-
import { isBun, isBunPM, isBunRuntime } from "@reliverse/runtime";
|
|
5
|
-
import { readPackageJSON } from "pkg-types";
|
|
6
|
-
import { cliVersion, dlerName } from "../config/constants.js";
|
|
7
|
-
export async function readLocalPackageJSON() {
|
|
8
|
-
const candidateDirs = [];
|
|
9
|
-
if (Array.isArray(process.argv) && typeof process.argv[1] === "string" && process.argv[1].length > 0) {
|
|
10
|
-
candidateDirs.push(dirname(process.argv[1]));
|
|
11
|
-
}
|
|
12
|
-
candidateDirs.push(process.cwd());
|
|
13
|
-
for (const dir of candidateDirs) {
|
|
14
|
-
try {
|
|
15
|
-
const pkg = await readPackageJSON(dir);
|
|
16
|
-
return { name: pkg.name, version: pkg.version };
|
|
17
|
-
} catch {
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
relinka("verbose", "Could not read package.json, using default values");
|
|
21
|
-
return {};
|
|
22
|
-
}
|
|
23
|
-
export const getPkgName = async () => {
|
|
24
|
-
const pkg = await readLocalPackageJSON();
|
|
25
|
-
return pkg.name || "unknown";
|
|
26
|
-
};
|
|
27
|
-
export const getPkgVersion = async () => {
|
|
28
|
-
const pkg = await readLocalPackageJSON();
|
|
29
|
-
return pkg.version || "0.0.0";
|
|
30
|
-
};
|
|
31
|
-
export async function showStartPrompt(isDev, showRuntimeInfo, clearConsole) {
|
|
32
|
-
await startPrompt({
|
|
33
|
-
titleColor: "inverse",
|
|
34
|
-
clearConsole,
|
|
35
|
-
packageName: dlerName,
|
|
36
|
-
packageVersion: cliVersion,
|
|
37
|
-
isDev
|
|
38
|
-
});
|
|
39
|
-
if (showRuntimeInfo) {
|
|
40
|
-
console.log("isBunRuntime:", isBunRuntime());
|
|
41
|
-
console.log("isBunPM:", await isBunPM());
|
|
42
|
-
console.log("isBun:", isBun);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
export async function showEndPrompt() {
|
|
46
|
-
await endPrompt({
|
|
47
|
-
title: "Please consider supporting Reliverse development: https://github.com/sponsors/blefnk",
|
|
48
|
-
titleAnimation: "glitch",
|
|
49
|
-
titleColor: "dim",
|
|
50
|
-
titleTypography: "bold",
|
|
51
|
-
titleAnimationDelay: 800
|
|
52
|
-
});
|
|
53
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare const handleError: (error: unknown) => string;
|
|
2
|
-
/**
|
|
3
|
-
* Changes the current working directory to the specified path.
|
|
4
|
-
* Logs a warning if the target directory does not exist.
|
|
5
|
-
*/
|
|
6
|
-
export declare function cd(dir: string): Promise<void>;
|
|
7
|
-
/**
|
|
8
|
-
* Returns the current working directory.
|
|
9
|
-
*/
|
|
10
|
-
export declare function pwd(): void;
|
|
11
|
-
/**
|
|
12
|
-
* Removes a file or directory (recursively, if it's a directory).
|
|
13
|
-
* Logs an error if removal fails.
|
|
14
|
-
*/
|
|
15
|
-
export declare function rm(target: string): Promise<void>;
|
|
16
|
-
/**
|
|
17
|
-
* Returns the current working directory.
|
|
18
|
-
*/
|
|
19
|
-
export declare function getCurrentWorkingDirectory(useCache?: boolean): string;
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { cwd } from "node:process";
|
|
2
|
-
import { normalize } from "@reliverse/pathkit";
|
|
3
|
-
import fs, { ensuredir } from "@reliverse/relifso";
|
|
4
|
-
import { relinka } from "@reliverse/relinka";
|
|
5
|
-
export const handleError = (error) => error instanceof Error ? error.message : "Unknown error";
|
|
6
|
-
export async function cd(dir) {
|
|
7
|
-
try {
|
|
8
|
-
await ensuredir(dir);
|
|
9
|
-
await fs.access(dir);
|
|
10
|
-
process.chdir(dir);
|
|
11
|
-
relinka("verbose", `Changed directory to: ${process.cwd()}`);
|
|
12
|
-
} catch (error) {
|
|
13
|
-
relinka("warn", `Directory does not exist: ${dir}`, handleError(error));
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export function pwd() {
|
|
17
|
-
const cwd2 = getCurrentWorkingDirectory();
|
|
18
|
-
relinka("verbose", `Current working directory: ${cwd2}`);
|
|
19
|
-
}
|
|
20
|
-
export async function rm(target) {
|
|
21
|
-
try {
|
|
22
|
-
await fs.remove(target);
|
|
23
|
-
relinka("verbose", `Removed: ${target}`);
|
|
24
|
-
} catch (error) {
|
|
25
|
-
relinka("error", `Failed to remove: ${target}`, handleError(error));
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
export function getCurrentWorkingDirectory(useCache = true) {
|
|
29
|
-
let cachedCWD = null;
|
|
30
|
-
if (useCache && cachedCWD) {
|
|
31
|
-
return cachedCWD;
|
|
32
|
-
}
|
|
33
|
-
try {
|
|
34
|
-
const currentDirectory = normalize(cwd());
|
|
35
|
-
if (useCache) {
|
|
36
|
-
cachedCWD = currentDirectory;
|
|
37
|
-
}
|
|
38
|
-
return currentDirectory;
|
|
39
|
-
} catch (error) {
|
|
40
|
-
relinka("error", "Error getting current working directory:", handleError(error));
|
|
41
|
-
throw error;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import path from "@reliverse/pathkit";
|
|
2
|
-
import { ensuredir } from "@reliverse/relifso";
|
|
3
|
-
import { relinka } from "@reliverse/relinka";
|
|
4
|
-
export async function setupDevModeIfNeeded(params) {
|
|
5
|
-
if (params.isDev) {
|
|
6
|
-
const newCwd = path.join(params.cwd, "tests-runtime");
|
|
7
|
-
await ensuredir(newCwd);
|
|
8
|
-
params.cwd = newCwd;
|
|
9
|
-
relinka("verbose", `Dev mode: using tests-runtime => ${newCwd}`);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import path from "@reliverse/pathkit";
|
|
2
|
-
import fs from "@reliverse/relifso";
|
|
3
|
-
export async function findTsconfigUp(fromPath) {
|
|
4
|
-
let currentDir = fromPath;
|
|
5
|
-
const rootPath = path.parse(currentDir).root;
|
|
6
|
-
while (true) {
|
|
7
|
-
const candidate = path.join(currentDir, "tsconfig.json");
|
|
8
|
-
if (await fs.pathExists(candidate)) return candidate;
|
|
9
|
-
const parentDir = path.dirname(currentDir);
|
|
10
|
-
if (parentDir === currentDir || currentDir === rootPath) break;
|
|
11
|
-
currentDir = parentDir;
|
|
12
|
-
}
|
|
13
|
-
return;
|
|
14
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import type { NpmOutExt, ReliverseConfig, Sourcemap } from "../schema/mod.js";
|
|
2
|
-
/**
|
|
3
|
-
* Converts the Unified build sourcemap option to a Bun-friendly value.
|
|
4
|
-
* @param transpileSourcemap - The sourcemap configuration ('none', 'inline', 'linked', 'external', true, false).
|
|
5
|
-
* @returns "none", "inline", or "external" for Bun's bundler.
|
|
6
|
-
*/
|
|
7
|
-
export declare function getBunSourcemapOption(transpileSourcemap: Sourcemap): "external" | "inline" | "none";
|
|
8
|
-
/**
|
|
9
|
-
* Converts the Unified build sourcemap option to a Rollup/Unified-bundler friendly value.
|
|
10
|
-
* @param transpileSourcemap - The sourcemap configuration ('none', 'inline', 'linked', 'external', true, false).
|
|
11
|
-
* @returns "inline" if inline is specified; true for linked/external or boolean true; otherwise false.
|
|
12
|
-
*/
|
|
13
|
-
export declare function getUnifiedSourcemapOption(transpileSourcemap: Sourcemap): "inline" | boolean;
|
|
14
|
-
/**
|
|
15
|
-
* Renames the primary output file (and its declaration file, if applicable)
|
|
16
|
-
* in the output directory.
|
|
17
|
-
*
|
|
18
|
-
* @deprecated Earlier dler used to rename to a standardized name (e.g., mod.js, mod.ts).
|
|
19
|
-
*
|
|
20
|
-
* TODO: It will be removed in the future.
|
|
21
|
-
*
|
|
22
|
-
* @param isJsr - Flag indicating if the target platform is JSR.
|
|
23
|
-
* @param outDirBin - The output directory where the compiled files reside.
|
|
24
|
-
* @param originalEntryFileBasename - The base name (file name only) of the original entry file processed by the bundler.
|
|
25
|
-
* @param unifiedBundlerOutExt - The file extension used for standard (non-JSR) builds (e.g., 'js', 'mjs').
|
|
26
|
-
* @param distJsrOutFilesExt - The file extension used for JSR builds (likely 'ts' or 'js').
|
|
27
|
-
* @param config - The configuration object.
|
|
28
|
-
* @returns An object containing the new base name of the entry file.
|
|
29
|
-
* @throws If the expected source entry file is not found in the output directory.
|
|
30
|
-
*/
|
|
31
|
-
export declare function renameEntryFile(isJsr: boolean, outDirBin: string, originalEntryFileBasename: string, unifiedBundlerOutExt: NpmOutExt, distJsrOutFilesExt: NpmOutExt, config: ReliverseConfig): Promise<{
|
|
32
|
-
updatedEntryFile: string;
|
|
33
|
-
}>;
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import path from "@reliverse/pathkit";
|
|
2
|
-
import fs from "@reliverse/relifso";
|
|
3
|
-
import { relinka } from "@reliverse/relinka";
|
|
4
|
-
export function getBunSourcemapOption(transpileSourcemap) {
|
|
5
|
-
relinka("verbose", `Converting Bun sourcemap option from: ${transpileSourcemap}`);
|
|
6
|
-
switch (transpileSourcemap) {
|
|
7
|
-
case "inline":
|
|
8
|
-
return "inline";
|
|
9
|
-
case "none":
|
|
10
|
-
case false:
|
|
11
|
-
return "none";
|
|
12
|
-
default:
|
|
13
|
-
return "external";
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export function getUnifiedSourcemapOption(transpileSourcemap) {
|
|
17
|
-
relinka("verbose", `Converting Unified/Rollup sourcemap option from: ${transpileSourcemap}`);
|
|
18
|
-
switch (transpileSourcemap) {
|
|
19
|
-
case "external":
|
|
20
|
-
case "linked":
|
|
21
|
-
return true;
|
|
22
|
-
// Indicates separate sourcemap file
|
|
23
|
-
case "inline":
|
|
24
|
-
return "inline";
|
|
25
|
-
// Indicates inline sourcemap
|
|
26
|
-
case "none":
|
|
27
|
-
case false:
|
|
28
|
-
return false;
|
|
29
|
-
// No sourcemap
|
|
30
|
-
default:
|
|
31
|
-
return !!transpileSourcemap;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
export async function renameEntryFile(isJsr, outDirBin, originalEntryFileBasename, unifiedBundlerOutExt, distJsrOutFilesExt, config) {
|
|
35
|
-
relinka(
|
|
36
|
-
"verbose",
|
|
37
|
-
`Attempting to rename entry file. Original basename: ${originalEntryFileBasename}, Output Dir: ${outDirBin}, isJsr=${isJsr}`
|
|
38
|
-
);
|
|
39
|
-
let sourceEntryBasename;
|
|
40
|
-
let targetEntryBasename;
|
|
41
|
-
let sourceDeclarationBasename = null;
|
|
42
|
-
let targetDeclarationBasename = null;
|
|
43
|
-
const outputExt = isJsr ? distJsrOutFilesExt : unifiedBundlerOutExt;
|
|
44
|
-
const originalBasenameNoExt = originalEntryFileBasename.split(".").slice(0, -1).join(".");
|
|
45
|
-
if (isJsr) {
|
|
46
|
-
if (originalEntryFileBasename.endsWith(".ts")) {
|
|
47
|
-
sourceEntryBasename = originalEntryFileBasename;
|
|
48
|
-
targetEntryBasename = config.coreEntryFile;
|
|
49
|
-
} else {
|
|
50
|
-
sourceEntryBasename = `${originalBasenameNoExt}.${outputExt}`;
|
|
51
|
-
targetEntryBasename = `${config.coreEntryFile.replace(/\.ts$/, `.${outputExt}`)}`;
|
|
52
|
-
}
|
|
53
|
-
} else {
|
|
54
|
-
sourceEntryBasename = `${originalBasenameNoExt}.${outputExt}`;
|
|
55
|
-
targetEntryBasename = `${config.coreEntryFile.replace(/\.ts$/, `.${outputExt}`)}`;
|
|
56
|
-
sourceDeclarationBasename = `${originalBasenameNoExt}.d.ts`;
|
|
57
|
-
targetDeclarationBasename = `${config.coreEntryFile.replace(/\.ts$/, ".d.ts")}`;
|
|
58
|
-
}
|
|
59
|
-
const sourceEntryPath = path.join(outDirBin, sourceEntryBasename);
|
|
60
|
-
const targetEntryPath = path.join(outDirBin, targetEntryBasename);
|
|
61
|
-
const sourceDeclarationPath = sourceDeclarationBasename ? path.join(outDirBin, sourceDeclarationBasename) : null;
|
|
62
|
-
const targetDeclarationPath = targetDeclarationBasename ? path.join(outDirBin, targetDeclarationBasename) : null;
|
|
63
|
-
if (!await fs.pathExists(sourceEntryPath)) {
|
|
64
|
-
throw new Error(`Entry file expected for renaming not found: ${sourceEntryPath}`);
|
|
65
|
-
}
|
|
66
|
-
relinka(
|
|
67
|
-
"verbose",
|
|
68
|
-
`Found source entry file: ${sourceEntryPath}. Renaming to: ${targetEntryPath}`
|
|
69
|
-
);
|
|
70
|
-
if (sourceDeclarationPath && targetDeclarationPath) {
|
|
71
|
-
if (await fs.pathExists(sourceDeclarationPath)) {
|
|
72
|
-
if (sourceDeclarationPath !== targetDeclarationPath) {
|
|
73
|
-
relinka(
|
|
74
|
-
"verbose",
|
|
75
|
-
`Renaming declaration ${sourceDeclarationPath} to ${targetDeclarationPath}`
|
|
76
|
-
);
|
|
77
|
-
await fs.rename(sourceDeclarationPath, targetDeclarationPath);
|
|
78
|
-
} else {
|
|
79
|
-
}
|
|
80
|
-
} else {
|
|
81
|
-
relinka(
|
|
82
|
-
"verbose",
|
|
83
|
-
`Source declaration file not found, skipping rename: ${sourceDeclarationPath}`
|
|
84
|
-
);
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
if (sourceEntryPath !== targetEntryPath) {
|
|
88
|
-
await fs.rename(sourceEntryPath, targetEntryPath);
|
|
89
|
-
relinka("verbose", `Renamed entry file to ${targetEntryPath}`);
|
|
90
|
-
} else {
|
|
91
|
-
relinka(
|
|
92
|
-
"log",
|
|
93
|
-
`Source entry file ${sourceEntryPath} already has the target name. Skipping rename.`
|
|
94
|
-
);
|
|
95
|
-
}
|
|
96
|
-
return { updatedEntryFile: targetEntryBasename };
|
|
97
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { LibConfig } from "../schema/mod.js";
|
|
2
|
-
/**
|
|
3
|
-
* Recursively removes any existing distribution folders.
|
|
4
|
-
*/
|
|
5
|
-
export declare function removeDistFolders(distNpmDirName: string, distJsrDirName: string, libsDirDist: string, libsList: Record<string, LibConfig>, distTmpDirName?: string): Promise<boolean>;
|
|
6
|
-
/**
|
|
7
|
-
* Removes logInternal and relinka "internal" calls from TypeScript/JavaScript files
|
|
8
|
-
* @param targetDir Directory to process recursively
|
|
9
|
-
* @returns Promise<boolean> True if successful
|
|
10
|
-
*/
|
|
11
|
-
export declare function removeLogInternalCalls(targetDir: string): Promise<boolean>;
|
|
@@ -1,70 +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 { CONCURRENCY_DEFAULT, PROJECT_ROOT } from "../config/constants.js";
|
|
6
|
-
export async function removeDistFolders(distNpmDirName, distJsrDirName, libsDirDist, libsList, distTmpDirName = "") {
|
|
7
|
-
const foldersToRemove = [];
|
|
8
|
-
foldersToRemove.push(distNpmDirName);
|
|
9
|
-
foldersToRemove.push(distJsrDirName);
|
|
10
|
-
if (distTmpDirName !== "") {
|
|
11
|
-
foldersToRemove.push(distTmpDirName);
|
|
12
|
-
}
|
|
13
|
-
if (libsList && Object.keys(libsList).length > 0) {
|
|
14
|
-
foldersToRemove.push(libsDirDist);
|
|
15
|
-
}
|
|
16
|
-
const existingFolders = [];
|
|
17
|
-
for (const folder of foldersToRemove) {
|
|
18
|
-
const folderPath = path.resolve(PROJECT_ROOT, folder);
|
|
19
|
-
if (await fs.pathExists(folderPath)) {
|
|
20
|
-
existingFolders.push(folder);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
if (existingFolders.length > 0) {
|
|
24
|
-
await pMap(
|
|
25
|
-
existingFolders,
|
|
26
|
-
async (folder) => {
|
|
27
|
-
const folderPath = path.resolve(PROJECT_ROOT, folder);
|
|
28
|
-
if (await fs.pathExists(folderPath)) {
|
|
29
|
-
await fs.remove(folderPath);
|
|
30
|
-
relinka("verbose", `Removed: ${folderPath}`);
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
{ concurrency: CONCURRENCY_DEFAULT }
|
|
34
|
-
);
|
|
35
|
-
relinka("verbose", "Distribution folders removed successfully");
|
|
36
|
-
}
|
|
37
|
-
return true;
|
|
38
|
-
}
|
|
39
|
-
export async function removeLogInternalCalls(targetDir) {
|
|
40
|
-
const files = await fs.readdir(targetDir, { recursive: true });
|
|
41
|
-
const tsJsFiles = files.filter(
|
|
42
|
-
(file) => file.endsWith(".ts") || file.endsWith(".js") || file.endsWith(".tsx") || file.endsWith(".jsx")
|
|
43
|
-
);
|
|
44
|
-
await pMap(
|
|
45
|
-
tsJsFiles,
|
|
46
|
-
async (file) => {
|
|
47
|
-
const filePath = path.join(targetDir, file);
|
|
48
|
-
const content = await fs.readFile(filePath, "utf8");
|
|
49
|
-
let newContent = content.replace(
|
|
50
|
-
/logInternal\s*\(\s*(?:`[^`]*`|'[^']*'|"[^"]*"|(?:[^;]*?,\s*)*[^;]*?)\s*\)\s*;?/g,
|
|
51
|
-
""
|
|
52
|
-
);
|
|
53
|
-
newContent = newContent.replace(
|
|
54
|
-
/relinka\s*\(\s*["']internal["']\s*,\s*(?:`[^`]*`|'[^']*'|"[^"]*"|(?:[^;]*?,\s*)*[^;]*?)\s*\)\s*;?/g,
|
|
55
|
-
""
|
|
56
|
-
);
|
|
57
|
-
newContent = newContent.replace(
|
|
58
|
-
/relinka\.internal\s*\(\s*(?:`[^`]*`|'[^']*'|"[^"]*"|(?:[^;]*?,\s*)*[^;]*?)\s*\)\s*;?/g,
|
|
59
|
-
""
|
|
60
|
-
);
|
|
61
|
-
newContent = newContent.replace(/\n\s*\n\s*\n/g, "\n\n").replace(/^\s*\n/gm, "").replace(/\n\s*$/g, "\n");
|
|
62
|
-
if (newContent !== content) {
|
|
63
|
-
await fs.writeFile(filePath, newContent);
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
{ concurrency: CONCURRENCY_DEFAULT }
|
|
67
|
-
);
|
|
68
|
-
relinka("verbose", "Successfully removed logInternal and relinka internal calls from files");
|
|
69
|
-
return true;
|
|
70
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import type { ReliverseConfig } from "../schema/mod.js";
|
|
2
|
-
/**
|
|
3
|
-
* Filters out development dependencies from a dependency record.
|
|
4
|
-
*/
|
|
5
|
-
export declare function filterDeps(deps: Record<string, string> | undefined, clearUnused: boolean, outDirBin: string, isJsr: boolean, config: ReliverseConfig, libName?: string): Promise<Record<string, string>>;
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
import { relinka } from "@reliverse/relinka";
|
|
2
|
-
import { readPackageJSON } from "pkg-types";
|
|
3
|
-
import { glob } from "tinyglobby";
|
|
4
|
-
import { readFileSafe } from "./utils-fs.js";
|
|
5
|
-
import { extractPackageName } from "./utils-misc.js";
|
|
6
|
-
export async function filterDeps(deps, clearUnused, outDirBin, isJsr, config, libName) {
|
|
7
|
-
relinka("verbose", `Filtering dependencies (clearUnused=${clearUnused})`);
|
|
8
|
-
if (!deps) return {};
|
|
9
|
-
const patterns = /* @__PURE__ */ new Set();
|
|
10
|
-
const addPatterns = /* @__PURE__ */ new Set();
|
|
11
|
-
for (const pattern of config.filterDepsPatterns.global) {
|
|
12
|
-
if (pattern.startsWith("+")) {
|
|
13
|
-
addPatterns.add(pattern.slice(1));
|
|
14
|
-
} else {
|
|
15
|
-
patterns.add(pattern);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
if (!isJsr) {
|
|
19
|
-
for (const pattern of config.filterDepsPatterns["dist-npm"]) {
|
|
20
|
-
if (pattern.startsWith("+")) {
|
|
21
|
-
addPatterns.add(pattern.slice(1));
|
|
22
|
-
} else {
|
|
23
|
-
patterns.add(pattern);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
if (isJsr) {
|
|
28
|
-
for (const pattern of config.filterDepsPatterns["dist-jsr"]) {
|
|
29
|
-
if (pattern.startsWith("+")) {
|
|
30
|
-
addPatterns.add(pattern.slice(1));
|
|
31
|
-
} else {
|
|
32
|
-
patterns.add(pattern);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
if (libName && config.filterDepsPatterns["dist-libs"][libName]) {
|
|
37
|
-
const libPatterns = config.filterDepsPatterns["dist-libs"][libName];
|
|
38
|
-
if (!isJsr) {
|
|
39
|
-
for (const pattern of libPatterns.npm) {
|
|
40
|
-
if (pattern.startsWith("+")) {
|
|
41
|
-
addPatterns.add(pattern.slice(1));
|
|
42
|
-
} else {
|
|
43
|
-
patterns.add(pattern);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
if (isJsr) {
|
|
48
|
-
for (const pattern of libPatterns.jsr) {
|
|
49
|
-
if (pattern.startsWith("+")) {
|
|
50
|
-
addPatterns.add(pattern.slice(1));
|
|
51
|
-
} else {
|
|
52
|
-
patterns.add(pattern);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
const shouldExcludeByPattern = (depName) => {
|
|
58
|
-
const depNameLower = depName.toLowerCase();
|
|
59
|
-
for (const pattern of patterns) {
|
|
60
|
-
if (pattern.startsWith("!")) {
|
|
61
|
-
const negPattern = pattern.slice(1).toLowerCase();
|
|
62
|
-
if (depNameLower.includes(negPattern)) {
|
|
63
|
-
return false;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
for (const pattern of patterns) {
|
|
68
|
-
if (!pattern.startsWith("!")) {
|
|
69
|
-
if (depNameLower.includes(pattern.toLowerCase())) {
|
|
70
|
-
return true;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
return false;
|
|
75
|
-
};
|
|
76
|
-
const originalPkg = await readPackageJSON();
|
|
77
|
-
const shouldExcludeDep = (depName, isDevDep) => {
|
|
78
|
-
if (isJsr && config.coreIsCLI.enabled) {
|
|
79
|
-
return shouldExcludeByPattern(depName);
|
|
80
|
-
}
|
|
81
|
-
return isDevDep || shouldExcludeByPattern(depName);
|
|
82
|
-
};
|
|
83
|
-
const devDeps = deps === originalPkg.devDependencies;
|
|
84
|
-
if (!clearUnused) {
|
|
85
|
-
const filtered2 = Object.entries(deps).reduce((acc, [k, v]) => {
|
|
86
|
-
if (!shouldExcludeDep(k, devDeps)) {
|
|
87
|
-
acc[k] = v;
|
|
88
|
-
}
|
|
89
|
-
return acc;
|
|
90
|
-
}, {});
|
|
91
|
-
for (const pattern of addPatterns) {
|
|
92
|
-
if (!filtered2[pattern] && !originalPkg.dependencies?.[pattern]) {
|
|
93
|
-
filtered2[pattern] = originalPkg.devDependencies?.[pattern] || "latest";
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
relinka("verbose", `Filtered dependencies count: ${Object.keys(filtered2).length}`);
|
|
97
|
-
return filtered2;
|
|
98
|
-
}
|
|
99
|
-
const files = await glob("**/*.{js,ts}", {
|
|
100
|
-
absolute: true,
|
|
101
|
-
cwd: outDirBin
|
|
102
|
-
});
|
|
103
|
-
const usedPackages = /* @__PURE__ */ new Set();
|
|
104
|
-
for (const file of files) {
|
|
105
|
-
const content = await readFileSafe(file, isJsr, "filterDeps");
|
|
106
|
-
const importMatches = content.matchAll(/from\s+['"](\.|\.\/|\.\\)?src(\/|\\)/g);
|
|
107
|
-
for (const match of importMatches) {
|
|
108
|
-
const importPath = match[1];
|
|
109
|
-
const pkg = extractPackageName(importPath);
|
|
110
|
-
if (pkg) {
|
|
111
|
-
usedPackages.add(pkg);
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
const filtered = Object.entries(deps).reduce((acc, [k, v]) => {
|
|
116
|
-
if (usedPackages.has(k) && !shouldExcludeDep(k, devDeps)) {
|
|
117
|
-
acc[k] = v;
|
|
118
|
-
}
|
|
119
|
-
return acc;
|
|
120
|
-
}, {});
|
|
121
|
-
relinka(
|
|
122
|
-
"verbose",
|
|
123
|
-
`Filtered dependencies count (after usage check): ${Object.keys(filtered).length}`
|
|
124
|
-
);
|
|
125
|
-
return filtered;
|
|
126
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { LibConfig } from "../schema/mod.js";
|
|
2
|
-
/**
|
|
3
|
-
* Determines the distribution name based on the file path and build type.
|
|
4
|
-
* This function is used for logging and determining output paths.
|
|
5
|
-
*
|
|
6
|
-
* @returns The distribution name in the transpileFormat of:
|
|
7
|
-
* - For empty isJsr: "root"
|
|
8
|
-
* - For regular builds: "dist-jsr" or "dist-npm"
|
|
9
|
-
* - For library builds: "dist-libs/{lib-name}/jsr" or "dist-libs/{lib-name}/npm"
|
|
10
|
-
* - For library builds with libDirName: "dist-libs/{libDirName}/jsr" or "dist-libs/{libDirName}/npm"
|
|
11
|
-
*/
|
|
12
|
-
export declare function determineDistName(filePath: string, isJsr: "" | boolean, libsList?: Record<string, LibConfig>): string;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
export function determineDistName(filePath, isJsr, libsList) {
|
|
2
|
-
if (isJsr === "") {
|
|
3
|
-
return "root";
|
|
4
|
-
}
|
|
5
|
-
const baseDistName = isJsr ? "dist-jsr" : "dist-npm";
|
|
6
|
-
const isLibraryPath = filePath.includes("/libs/") || filePath.includes("\\libs\\");
|
|
7
|
-
if (!isLibraryPath) {
|
|
8
|
-
return baseDistName;
|
|
9
|
-
}
|
|
10
|
-
const libPathRegex = /[/\\]libs[/\\]([^/\\]+)/;
|
|
11
|
-
const libPathResult = libPathRegex.exec(filePath);
|
|
12
|
-
const extractedLibName = libPathResult?.[1];
|
|
13
|
-
if (!extractedLibName) {
|
|
14
|
-
return baseDistName;
|
|
15
|
-
}
|
|
16
|
-
if (libsList) {
|
|
17
|
-
for (const [libName, libConfig] of Object.entries(libsList)) {
|
|
18
|
-
const simplifiedLibName = libName.startsWith("@") ? libName.split("/")[1] : libName;
|
|
19
|
-
if (simplifiedLibName === extractedLibName && libConfig.libDirName) {
|
|
20
|
-
return isJsr ? `dist-libs/${libConfig.libDirName}/jsr` : `dist-libs/${libConfig.libDirName}/npm`;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
return isJsr ? `dist-libs/${extractedLibName}/jsr` : `dist-libs/${extractedLibName}/npm`;
|
|
25
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Handles errors during the build process.
|
|
3
|
-
* This is the single source of error logging.
|
|
4
|
-
*/
|
|
5
|
-
export declare function handleDlerError(error: unknown): never;
|
|
6
|
-
/**
|
|
7
|
-
* Runs an async function within a given working directory,
|
|
8
|
-
* ensuring that the original directory is restored afterward.
|
|
9
|
-
*/
|
|
10
|
-
export declare function withWorkingDirectory<T>(transpileTargetDir: string, fn: () => Promise<T>): Promise<T>;
|
|
11
|
-
/**
|
|
12
|
-
* Validates that the current working directory is appropriate for a development environment.
|
|
13
|
-
* Throws an error if the current directory does not contain any of the required paths.
|
|
14
|
-
*/
|
|
15
|
-
export declare function validateDevCwd(isDev: boolean, paths: string[], cliName: string, cliOrg?: string): Promise<void>;
|
|
16
|
-
/**
|
|
17
|
-
* Converts unknown errors to readable strings.
|
|
18
|
-
*/
|
|
19
|
-
export declare const formatError: (error: unknown) => string;
|