@powerhousedao/switchboard 5.1.0-dev.5 → 5.1.0-dev.7
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 +20 -0
- package/Dockerfile +2 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## 5.1.0-dev.7 (2025-12-04)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- set jsr as registry in dockerfiles ([291027b16](https://github.com/powerhouse-inc/powerhouse/commit/291027b16))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Frank
|
|
10
|
+
|
|
11
|
+
## 5.1.0-dev.6 (2025-12-04)
|
|
12
|
+
|
|
13
|
+
### 🩹 Fixes
|
|
14
|
+
|
|
15
|
+
- **renown:** build issues ([1893c35a0](https://github.com/powerhouse-inc/powerhouse/commit/1893c35a0))
|
|
16
|
+
|
|
17
|
+
### ❤️ Thank You
|
|
18
|
+
|
|
19
|
+
- Frank
|
|
20
|
+
|
|
1
21
|
## 5.1.0-dev.5 (2025-12-04)
|
|
2
22
|
|
|
3
23
|
This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
|
package/Dockerfile
CHANGED
|
@@ -36,6 +36,8 @@ ENV PH_SWITCHBOARD_PORT=$PORT
|
|
|
36
36
|
ARG TAG=latest
|
|
37
37
|
ENV TAG=$TAG
|
|
38
38
|
# RUN apk add --no-cache openssl
|
|
39
|
+
# Configure JSR registry for @jsr scoped packages
|
|
40
|
+
RUN pnpm config set @jsr:registry https://npm.jsr.io
|
|
39
41
|
RUN pnpm add -g ph-cmd@$TAG prisma@5.17.0
|
|
40
42
|
RUN case "$TAG" in \
|
|
41
43
|
*dev*) ph init project --dev --package-manager pnpm ;; \
|