@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 +18 -0
- package/dist/inspect.js +2 -1
- package/dist/inspect.js.map +1 -1
- package/dist/lint.js +2 -0
- package/dist/lint.js.map +1 -1
- package/dist/make.js +4 -4
- package/dist/make.js.map +1 -1
- package/dist/templates/agents.d.ts.map +1 -1
- package/dist/templates/agents.js +2 -0
- package/dist/templates/agents.js.map +1 -1
- package/dist/templates/base.d.ts.map +1 -1
- package/dist/templates/base.js +2 -0
- package/dist/templates/base.js.map +1 -1
- package/dist/templates/db/mysql.js +3 -3
- package/dist/templates/db/postgres.js +3 -3
- package/dist/templates/db/sqlite.js +3 -3
- package/package.json +2 -2
- package/src/inspect.ts +2 -1
- package/src/lint.ts +1 -0
- package/src/make.ts +5 -5
- package/src/templates/agents.ts +2 -0
- package/src/templates/base.ts +2 -0
- package/src/templates/db/mysql.ts +3 -3
- package/src/templates/db/postgres.ts +3 -3
- package/src/templates/db/sqlite.ts +3 -3
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}/`) &&
|
|
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",
|