@powerhousedao/switchboard 2.4.6-dev.3 → 2.4.6-dev.5

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,15 +1,8 @@
1
- ## 2.4.6-dev.3 (2025-05-25)
1
+ ## 2.4.6-dev.5 (2025-05-25)
2
2
 
3
- ### 🚀 Features
4
-
5
- - **switchboard:** deploy with new dockerfile ([54f65af17](https://github.com/powerhouse-inc/powerhouse/commit/54f65af17))
6
- - **switchboard:** new dockerfile based on ph-cmd ([fafff7143](https://github.com/powerhouse-inc/powerhouse/commit/fafff7143))
7
-
8
- ### 🧱 Updated Dependencies
3
+ ### 🩹 Fixes
9
4
 
10
- - Updated document-drive to 1.29.14-dev.0
11
- - Updated @powerhousedao/reactor-api to 1.29.28-dev.0
12
- - Updated @powerhousedao/config to 1.27.0-dev.17
5
+ - **switchboard:** damn heroku ([fb95e9adc](https://github.com/powerhouse-inc/powerhouse/commit/fb95e9adc))
13
6
 
14
7
  ### ❤️ Thank You
15
8
 
package/Dockerfile CHANGED
@@ -36,7 +36,8 @@ ARG PH_TAG=latest
36
36
  ENV PH_TAG=$PH_TAG
37
37
 
38
38
  RUN pnpm add -g ph-cmd@$PH_TAG && \
39
- ph setup-globals && \
39
+ ph init powerhouse --package-manager pnpm && \
40
+ cd /app/powerhouse && \
40
41
  ph use $PH_TAG
41
42
 
42
43
  # Copy and set up entrypoint script
package/entrypoint.sh CHANGED
@@ -1,5 +1,6 @@
1
1
  #!/bin/sh
2
2
  set -e
3
+ cd /app/powerhouse
3
4
 
4
5
  if [ ! -z "$PH_PACKAGES" ]; then
5
6
  # Convert comma-separated list to space-separated
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@powerhousedao/switchboard",
3
3
  "type": "module",
4
- "version": "2.4.6-dev.3",
4
+ "version": "2.4.6-dev.5",
5
5
  "main": "dist/src/index.js",
6
6
  "exports": {
7
7
  ".": "./dist/src/index.js",