kofi-stack-types 2.1.52 → 2.1.53
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/.turbo/turbo-build.log +4 -4
- package/dist/index.d.ts +7 -7
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/schemas.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> kofi-stack-types@2.1.
|
|
2
|
+
> kofi-stack-types@2.1.53 build /Users/theodenanyoh/Documents/Krumalabs/create-kofi-stack-v2/packages/types
|
|
3
3
|
> tsup src/index.ts --format esm --dts
|
|
4
4
|
|
|
5
5
|
CLI Building entry: src/index.ts
|
|
@@ -7,8 +7,8 @@ CLI Using tsconfig: tsconfig.json
|
|
|
7
7
|
CLI tsup v8.5.1
|
|
8
8
|
CLI Target: es2022
|
|
9
9
|
ESM Build start
|
|
10
|
-
ESM dist/index.js 5.
|
|
10
|
+
ESM dist/index.js 5.10 KB
|
|
11
11
|
ESM ⚡️ Build success in 12ms
|
|
12
12
|
DTS Build start
|
|
13
|
-
DTS ⚡️ Build success in
|
|
14
|
-
DTS dist/index.d.ts 20.
|
|
13
|
+
DTS ⚡️ Build success in 660ms
|
|
14
|
+
DTS dist/index.d.ts 20.97 KB
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
|
|
3
3
|
declare const ProjectStructureSchema: z.ZodEnum<["standalone", "monorepo"]>;
|
|
4
|
-
declare const MarketingSiteSchema: z.ZodEnum<["none", "nextjs", "payload"]>;
|
|
4
|
+
declare const MarketingSiteSchema: z.ZodEnum<["none", "nextjs", "payload", "astro"]>;
|
|
5
5
|
declare const AuthProviderSchema: z.ZodEnum<["github", "google", "discord", "twitter", "apple", "microsoft", "linkedin"]>;
|
|
6
6
|
declare const AnalyticsProviderSchema: z.ZodEnum<["none", "posthog", "vercel"]>;
|
|
7
7
|
declare const UploadsProviderSchema: z.ZodEnum<["none", "convex-fs", "r2", "uploadthing", "s3", "vercel-blob"]>;
|
|
@@ -80,7 +80,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
80
80
|
projectName: z.ZodString;
|
|
81
81
|
targetDir: z.ZodString;
|
|
82
82
|
structure: z.ZodEnum<["standalone", "monorepo"]>;
|
|
83
|
-
marketingSite: z.ZodEnum<["none", "nextjs", "payload"]>;
|
|
83
|
+
marketingSite: z.ZodEnum<["none", "nextjs", "payload", "astro"]>;
|
|
84
84
|
shadcn: z.ZodObject<{
|
|
85
85
|
componentLibrary: z.ZodEnum<["base", "radix"]>;
|
|
86
86
|
style: z.ZodEnum<["vega", "nova", "maia", "lyra", "mira"]>;
|
|
@@ -145,7 +145,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
145
145
|
projectName: string;
|
|
146
146
|
targetDir: string;
|
|
147
147
|
structure: "standalone" | "monorepo";
|
|
148
|
-
marketingSite: "none" | "nextjs" | "payload";
|
|
148
|
+
marketingSite: "none" | "nextjs" | "payload" | "astro";
|
|
149
149
|
shadcn: {
|
|
150
150
|
componentLibrary: "base" | "radix";
|
|
151
151
|
style: "vega" | "nova" | "maia" | "lyra" | "mira";
|
|
@@ -174,7 +174,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
174
174
|
projectName: string;
|
|
175
175
|
targetDir: string;
|
|
176
176
|
structure: "standalone" | "monorepo";
|
|
177
|
-
marketingSite: "none" | "nextjs" | "payload";
|
|
177
|
+
marketingSite: "none" | "nextjs" | "payload" | "astro";
|
|
178
178
|
shadcn: {
|
|
179
179
|
componentLibrary: "base" | "radix";
|
|
180
180
|
style: "vega" | "nova" | "maia" | "lyra" | "mira";
|
|
@@ -203,7 +203,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
203
203
|
declare const CLIInputSchema: z.ZodObject<{
|
|
204
204
|
projectName: z.ZodOptional<z.ZodString>;
|
|
205
205
|
structure: z.ZodOptional<z.ZodEnum<["standalone", "monorepo"]>>;
|
|
206
|
-
marketingSite: z.ZodOptional<z.ZodEnum<["none", "nextjs", "payload"]>>;
|
|
206
|
+
marketingSite: z.ZodOptional<z.ZodEnum<["none", "nextjs", "payload", "astro"]>>;
|
|
207
207
|
componentLibrary: z.ZodOptional<z.ZodEnum<["base", "radix"]>>;
|
|
208
208
|
style: z.ZodOptional<z.ZodEnum<["vega", "nova", "maia", "lyra", "mira"]>>;
|
|
209
209
|
baseColor: z.ZodOptional<z.ZodEnum<["neutral", "stone", "zinc", "gray"]>>;
|
|
@@ -241,7 +241,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
241
241
|
payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
|
|
242
242
|
projectName?: string | undefined;
|
|
243
243
|
structure?: "standalone" | "monorepo" | undefined;
|
|
244
|
-
marketingSite?: "none" | "nextjs" | "payload" | undefined;
|
|
244
|
+
marketingSite?: "none" | "nextjs" | "payload" | "astro" | undefined;
|
|
245
245
|
addons?: ("biome" | "husky" | "turborepo" | "playwright" | "vitest" | "rate-limiting" | "monitoring")[] | undefined;
|
|
246
246
|
packageManager?: "pnpm" | "npm" | "bun" | undefined;
|
|
247
247
|
authProviders?: ("github" | "google" | "discord" | "twitter" | "apple" | "microsoft" | "linkedin")[] | undefined;
|
|
@@ -265,7 +265,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
265
265
|
payloadStorage?: "r2" | "s3" | "vercel-blob" | "local" | "gcs" | undefined;
|
|
266
266
|
projectName?: string | undefined;
|
|
267
267
|
structure?: "standalone" | "monorepo" | undefined;
|
|
268
|
-
marketingSite?: "none" | "nextjs" | "payload" | undefined;
|
|
268
|
+
marketingSite?: "none" | "nextjs" | "payload" | "astro" | undefined;
|
|
269
269
|
addons?: ("biome" | "husky" | "turborepo" | "playwright" | "vitest" | "rate-limiting" | "monitoring")[] | undefined;
|
|
270
270
|
packageManager?: "pnpm" | "npm" | "bun" | undefined;
|
|
271
271
|
authProviders?: ("github" | "google" | "discord" | "twitter" | "apple" | "microsoft" | "linkedin")[] | undefined;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/schemas.ts
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
var ProjectStructureSchema = z.enum(["standalone", "monorepo"]);
|
|
4
|
-
var MarketingSiteSchema = z.enum(["none", "nextjs", "payload"]);
|
|
4
|
+
var MarketingSiteSchema = z.enum(["none", "nextjs", "payload", "astro"]);
|
|
5
5
|
var AuthProviderSchema = z.enum([
|
|
6
6
|
"github",
|
|
7
7
|
"google",
|
package/package.json
CHANGED
package/src/schemas.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { z } from 'zod'
|
|
|
4
4
|
export const ProjectStructureSchema = z.enum(['standalone', 'monorepo'])
|
|
5
5
|
|
|
6
6
|
// Marketing site options
|
|
7
|
-
export const MarketingSiteSchema = z.enum(['none', 'nextjs', 'payload'])
|
|
7
|
+
export const MarketingSiteSchema = z.enum(['none', 'nextjs', 'payload', 'astro'])
|
|
8
8
|
|
|
9
9
|
// Auth providers (OAuth)
|
|
10
10
|
export const AuthProviderSchema = z.enum([
|