@tanstack/cli 0.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/bin.cjs +470 -0
- package/dist/bin.d.cts +1 -0
- package/dist/bin.d.mts +1 -0
- package/dist/bin.mjs +469 -0
- package/dist/index.cjs +36 -0
- package/dist/index.d.cts +1172 -0
- package/dist/index.d.mts +1172 -0
- package/dist/index.mjs +3 -0
- package/dist/template-2SxOxCJc.mjs +2496 -0
- package/dist/template-BYKvtZrT.cjs +2734 -0
- package/package.json +66 -0
- package/src/api/fetch.test.ts +114 -0
- package/src/api/fetch.ts +221 -0
- package/src/bin.ts +95 -0
- package/src/commands/create.ts +463 -0
- package/src/commands/mcp.test.ts +152 -0
- package/src/commands/mcp.ts +199 -0
- package/src/engine/compile-with-addons.test.ts +302 -0
- package/src/engine/compile.test.ts +404 -0
- package/src/engine/compile.ts +551 -0
- package/src/engine/config-file.test.ts +118 -0
- package/src/engine/config-file.ts +61 -0
- package/src/engine/custom-addons/integration.ts +323 -0
- package/src/engine/custom-addons/shared.test.ts +98 -0
- package/src/engine/custom-addons/shared.ts +281 -0
- package/src/engine/custom-addons/template.test.ts +288 -0
- package/src/engine/custom-addons/template.ts +124 -0
- package/src/engine/template.test.ts +256 -0
- package/src/engine/template.ts +269 -0
- package/src/engine/types.ts +334 -0
- package/src/index.ts +85 -0
- package/src/parse-gitignore.d.ts +5 -0
- package/src/templates/base.ts +888 -0
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { A as writeConfigFile, C as IntegrationTypeSchema, D as RouterModeSchema, E as RouteSchema, M as compileWithAttribution, N as processTemplateFile, O as CONFIG_FILE, P as relativePath, S as IntegrationPhaseSchema, T as ManifestSchema, _ as HookSchema, a as initIntegration, b as IntegrationOptionSchema, c as fetchIntegrationFiles, d as fetchManifest, f as CategorySchema, g as EnvVarSchema, h as CustomTemplateInfoSchema, i as compileIntegration, j as compile, k as readConfigFile, l as fetchIntegrationInfo, m as CustomTemplateCompiledSchema, n as initTemplate, o as loadRemoteIntegration, p as CommandSchema, r as loadTemplate, s as fetchIntegration, t as compileTemplate, u as fetchIntegrations, v as IntegrationCompiledSchema, w as ManifestIntegrationSchema, x as IntegrationOptionsSchema, y as IntegrationInfoSchema } from "./template-2SxOxCJc.mjs";
|
|
2
|
+
|
|
3
|
+
export { CONFIG_FILE, CategorySchema, CommandSchema, CustomTemplateCompiledSchema, CustomTemplateInfoSchema, EnvVarSchema, HookSchema, IntegrationCompiledSchema, IntegrationInfoSchema, IntegrationOptionSchema, IntegrationOptionsSchema, IntegrationPhaseSchema, IntegrationTypeSchema, ManifestIntegrationSchema, ManifestSchema, RouteSchema, RouterModeSchema, compile, compileIntegration, compileTemplate, compileWithAttribution, fetchIntegration, fetchIntegrationFiles, fetchIntegrationInfo, fetchIntegrations, fetchManifest, initIntegration, initTemplate, loadRemoteIntegration, loadTemplate, processTemplateFile, readConfigFile, relativePath, writeConfigFile };
|