@baseplate-dev/project-builder-cli 0.4.1 → 0.4.2

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.
@@ -1,14 +1,8 @@
1
1
  import z from 'zod';
2
2
  declare const envConfigSchema: z.ZodObject<{
3
3
  PROJECT_DIRECTORIES: z.ZodOptional<z.ZodString>;
4
- INCLUDE_EXAMPLES: z.ZodOptional<z.ZodBoolean>;
5
- }, "strip", z.ZodTypeAny, {
6
- PROJECT_DIRECTORIES?: string | undefined;
7
- INCLUDE_EXAMPLES?: boolean | undefined;
8
- }, {
9
- PROJECT_DIRECTORIES?: string | undefined;
10
- INCLUDE_EXAMPLES?: boolean | undefined;
11
- }>;
4
+ INCLUDE_EXAMPLES: z.ZodOptional<z.z.ZodCoercedBoolean<unknown>>;
5
+ }, z.z.core.$strip>;
12
6
  type EnvConfig = z.infer<typeof envConfigSchema>;
13
7
  export declare function getEnvConfig(): EnvConfig;
14
8
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baseplate-dev/project-builder-cli",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Full-stack CLI builder using Baseplate generators",
5
5
  "keywords": [
6
6
  "cli",
@@ -35,7 +35,7 @@
35
35
  "LICENSE",
36
36
  "CHANGELOG",
37
37
  "dist/**/*",
38
- "!dist/**/*.d.ts.map",
38
+ "!dist/**/*.map",
39
39
  "!dist/**/*.tsbuildinfo",
40
40
  "bin/**/*"
41
41
  ],
@@ -45,24 +45,24 @@
45
45
  "pino": "9.5.0",
46
46
  "pino-pretty": "13.0.0",
47
47
  "pkg-dir": "^8.0.0",
48
- "zod": "3.25.76",
49
- "@baseplate-dev/project-builder-common": "0.4.1",
50
- "@baseplate-dev/project-builder-lib": "0.4.1",
51
- "@baseplate-dev/project-builder-server": "0.4.1",
52
- "@baseplate-dev/project-builder-web": "0.4.1",
53
- "@baseplate-dev/utils": "0.4.1"
48
+ "zod": "^4.1.13",
49
+ "@baseplate-dev/project-builder-common": "0.4.2",
50
+ "@baseplate-dev/project-builder-lib": "0.4.2",
51
+ "@baseplate-dev/project-builder-server": "0.4.2",
52
+ "@baseplate-dev/project-builder-web": "0.4.2",
53
+ "@baseplate-dev/utils": "0.4.2"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@playwright/test": "1.56.1",
57
57
  "@types/node": "^22.17.2",
58
58
  "eslint": "9.32.0",
59
- "fastify": "5.3.2",
59
+ "fastify": "5.6.2",
60
60
  "memfs": "4.15.1",
61
61
  "prettier": "3.6.2",
62
62
  "tsx": "4.20.6",
63
63
  "typescript": "5.8.3",
64
64
  "vitest": "3.2.4",
65
- "@baseplate-dev/tools": "0.4.1"
65
+ "@baseplate-dev/tools": "0.4.2"
66
66
  },
67
67
  "engines": {
68
68
  "node": "^22.0.0"