@powerhousedao/switchboard 5.1.0-dev.36 → 5.1.0-dev.37
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 +10 -0
- package/Dockerfile +0 -4
- package/entrypoint.sh +0 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 5.1.0-dev.37 (2026-01-09)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **codegen,ph-cmd:** use templates for project boilerplate creation ([#2190](https://github.com/powerhouse-inc/powerhouse/pull/2190))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Ryan Wolhuter @ryanwolhuter
|
|
10
|
+
|
|
1
11
|
## 5.1.0-dev.36 (2026-01-09)
|
|
2
12
|
|
|
3
13
|
### 🩹 Fixes
|
package/Dockerfile
CHANGED
|
@@ -49,10 +49,6 @@ RUN case "$TAG" in \
|
|
|
49
49
|
|
|
50
50
|
WORKDIR /app/project
|
|
51
51
|
|
|
52
|
-
# Create .npmrc with hoisted node-linker and reinstall to apply
|
|
53
|
-
# This fixes symlink issues on containerd's overlay filesystem
|
|
54
|
-
RUN echo "node-linker=hoisted" > .npmrc && pnpm install
|
|
55
|
-
|
|
56
52
|
# Install curl for health checks
|
|
57
53
|
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
|
58
54
|
|
package/entrypoint.sh
CHANGED
|
@@ -9,9 +9,6 @@ if [ ! -z "$PH_PACKAGES" ]; then
|
|
|
9
9
|
echo "[entrypoint] Installing package: $pkg"
|
|
10
10
|
ph install $pkg
|
|
11
11
|
done
|
|
12
|
-
# Rebuild node_modules with hoisted mode to fix overlay filesystem symlink issues
|
|
13
|
-
echo "[entrypoint] Rebuilding node_modules with hoisted mode..."
|
|
14
|
-
pnpm install
|
|
15
12
|
fi
|
|
16
13
|
|
|
17
14
|
# Check if DATABASE_URL starts with postgres and run Prisma db push
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerhousedao/switchboard",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.1.0-dev.
|
|
4
|
+
"version": "5.1.0-dev.37",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"kysely-pglite-dialect": "^1.1.1",
|
|
43
43
|
"pg": "^8.13.0",
|
|
44
44
|
"redis": "^4.7.0",
|
|
45
|
-
"@powerhousedao/config": "5.1.0-dev.
|
|
46
|
-
"@powerhousedao/reactor": "5.1.0-dev.
|
|
47
|
-
"@
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"document-model": "5.1.0-dev.
|
|
45
|
+
"@powerhousedao/config": "5.1.0-dev.37",
|
|
46
|
+
"@powerhousedao/reactor": "5.1.0-dev.37",
|
|
47
|
+
"@renown/sdk": "5.1.0-dev.37",
|
|
48
|
+
"@powerhousedao/reactor-api": "5.1.0-dev.37",
|
|
49
|
+
"document-drive": "5.1.0-dev.37",
|
|
50
|
+
"document-model": "5.1.0-dev.37"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/express": "^4.17.25",
|