@beignet/cli 0.0.17 → 0.0.19

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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @beignet/cli
2
2
 
3
+ ## 0.0.19
4
+
5
+ ### Patch Changes
6
+
7
+ - a1409fc: Allow `features/<feature>/client/` for feature-specific client data-fetching
8
+ helpers and hooks while preserving client/server dependency linting.
9
+ - @beignet/core@0.0.19
10
+
11
+ ## 0.0.18
12
+
13
+ ### Patch Changes
14
+
15
+ - 622ed66: Expose Drizzle provider ports through `db.drizzle` while keeping `db.db` as a
16
+ backwards-compatible alias, and update generated app wiring to use the clearer
17
+ name.
18
+ - Updated dependencies [622ed66]
19
+ - @beignet/core@0.0.18
20
+
3
21
  ## 0.0.17
4
22
 
5
23
  ### Patch Changes
package/dist/inspect.js CHANGED
@@ -797,7 +797,8 @@ async function inspectCanonicalConformance(targetDir, files, config, convention,
797
797
  const packageJson = await readPackageJson(targetDir, files);
798
798
  const installedPackages = installedPackageNames(packageJson);
799
799
  const featuresPath = directoryPath(config.paths.features);
800
- const hasClientSurface = files.some((file) => file.startsWith(`${featuresPath}/`) && file.includes("/components/")) ||
800
+ const hasClientSurface = files.some((file) => file.startsWith(`${featuresPath}/`) &&
801
+ (file.includes("/components/") || file.includes("/client/"))) ||
801
802
  files.some((file) => file.startsWith("client/")) ||
802
803
  [
803
804
  "@beignet/react-query",