@likec4/config 1.51.0 → 1.52.0

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/index.mjs CHANGED
@@ -173,7 +173,7 @@ const LikeC4ProjectJsonConfigSchema = z.object({
173
173
  "Applies to aws:, azure:, gcp:, and tech: icons. Bootstrap icons are excluded.",
174
174
  "Defaults to true."
175
175
  ].join("\n") }),
176
- implicitViews: z.boolean().optional().meta({ description: "Auto-generate scoped views for elements without explicit views. Defaults to true." })
176
+ implicitViews: z.boolean().optional().meta({ description: "Auto-generate scoped views for elements without explicit views. Defaults to false." })
177
177
  }).meta({
178
178
  id: "LikeC4ProjectConfig",
179
179
  description: "LikeC4 Project Configuration"
@@ -181,7 +181,7 @@ const LikeC4ProjectJsonConfigSchema = z.object({
181
181
  "Applies to aws:, azure:, gcp:, and tech: icons. Bootstrap icons are excluded.",
182
182
  "Defaults to true."
183
183
  ].join("\n") }),
184
- implicitViews: z.boolean().optional().meta({ description: "Auto-generate scoped views for elements without explicit views. Defaults to true." })
184
+ implicitViews: z.boolean().optional().meta({ description: "Auto-generate scoped views for elements without explicit views. Defaults to false." })
185
185
  }).meta({
186
186
  id: "LikeC4ProjectConfig",
187
187
  description: "LikeC4 Project Configuration"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@likec4/config",
3
- "version": "1.51.0",
3
+ "version": "1.52.0",
4
4
  "license": "MIT",
5
5
  "homepage": "https://likec4.dev",
6
6
  "author": "Denis Davydkov <denis@davydkov.com>",
@@ -56,8 +56,8 @@
56
56
  "json5": "^2.2.3",
57
57
  "zod": "^3.25.76",
58
58
  "type-fest": "^4.41.0",
59
- "@likec4/core": "1.51.0",
60
- "@likec4/log": "1.51.0"
59
+ "@likec4/core": "1.52.0",
60
+ "@likec4/log": "1.52.0"
61
61
  },
62
62
  "peerDependencies": {
63
63
  "bundle-require": "^5.1.0",
@@ -77,12 +77,12 @@
77
77
  "defu": "^6.1.4",
78
78
  "ufo": "1.6.3",
79
79
  "tsx": "4.21.0",
80
- "turbo": "2.8.12",
80
+ "turbo": "2.8.13",
81
81
  "typescript": "5.9.3",
82
82
  "obuild": "^0.4.31",
83
83
  "nano-spawn": "^2.0.0",
84
84
  "vitest": "4.0.18",
85
- "@likec4/tsconfig": "1.51.0",
85
+ "@likec4/tsconfig": "1.52.0",
86
86
  "@likec4/devops": "1.42.0"
87
87
  },
88
88
  "scripts": {
package/schema.json CHANGED
@@ -84,7 +84,7 @@
84
84
  "type": "boolean"
85
85
  },
86
86
  "implicitViews": {
87
- "description": "Auto-generate scoped views for elements without explicit views. Defaults to true.",
87
+ "description": "Auto-generate scoped views for elements without explicit views. Defaults to false.",
88
88
  "type": "boolean"
89
89
  }
90
90
  },
package/src/schema.ts CHANGED
@@ -103,7 +103,7 @@ export const LikeC4ProjectJsonConfigSchema = z.object({
103
103
  implicitViews: z.boolean()
104
104
  .optional()
105
105
  .meta({
106
- description: 'Auto-generate scoped views for elements without explicit views. Defaults to true.',
106
+ description: 'Auto-generate scoped views for elements without explicit views. Defaults to false.',
107
107
  }),
108
108
  })
109
109
  .meta({