@powerhousedao/switchboard 6.0.0-dev.10 → 6.0.0-dev.12

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,3 +1,25 @@
1
+ ## 6.0.0-dev.12 (2026-01-20)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - **docker:** install prettier globally for ph init project ([7817c65ba](https://github.com/powerhouse-inc/powerhouse/commit/7817c65ba))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Frank
10
+
11
+ ## 6.0.0-dev.11 (2026-01-20)
12
+
13
+ ### 🩹 Fixes
14
+
15
+ - **monorepo:** exclude root package from recursive build to prevent infinite loop ([099139393](https://github.com/powerhouse-inc/powerhouse/commit/099139393))
16
+ - **codegen:** fix failing codegen tests ([#2227](https://github.com/powerhouse-inc/powerhouse/pull/2227))
17
+
18
+ ### ❤️ Thank You
19
+
20
+ - Frank
21
+ - Ryan Wolhuter @ryanwolhuter
22
+
1
23
  ## 6.0.0-dev.10 (2026-01-19)
2
24
 
3
25
  ### 🚀 Features
package/Dockerfile CHANGED
@@ -19,8 +19,8 @@ RUN pnpm config set @jsr:registry https://npm.jsr.io
19
19
  ARG TAG=latest
20
20
  ARG PH_PACKAGES=""
21
21
 
22
- # Install ph-cmd and prisma
23
- RUN pnpm add -g ph-cmd@$TAG prisma@5.17.0
22
+ # Install ph-cmd, prisma, and prettier
23
+ RUN pnpm add -g ph-cmd@$TAG prisma@5.17.0 prettier
24
24
 
25
25
  # Initialize project based on tag
26
26
  RUN case "$TAG" in \