@powerhousedao/switchboard 5.2.0-staging.11 → 5.2.0-staging.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,13 @@
1
+ ## 5.2.0-staging.12 (2026-01-08)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - **connect, switchboard:** create .npmrc with hoisted node-linker before ph init ([69fd14527](https://github.com/powerhouse-inc/powerhouse/commit/69fd14527))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Frank
10
+
1
11
  ## 5.2.0-staging.11 (2026-01-08)
2
12
 
3
13
  ### 🩹 Fixes
package/Dockerfile CHANGED
@@ -40,6 +40,11 @@ ENV TAG=$TAG
40
40
  # Configure JSR registry for @jsr scoped packages
41
41
  RUN pnpm config set @jsr:registry https://npm.jsr.io
42
42
  RUN pnpm add -g ph-cmd@$TAG prisma@5.17.0
43
+
44
+ # Create .npmrc with hoisted node-linker BEFORE ph init runs pnpm install
45
+ # This fixes symlink issues on containerd's overlay filesystem
46
+ RUN mkdir -p /app/project && echo "node-linker=hoisted" > /app/project/.npmrc
47
+
43
48
  RUN case "$TAG" in \
44
49
  *dev*) ph init project --dev --package-manager pnpm ;; \
45
50
  *staging*) ph init project --staging --package-manager pnpm ;; \
@@ -48,10 +53,6 @@ RUN case "$TAG" in \
48
53
 
49
54
  WORKDIR /app/project
50
55
 
51
- # Use hoisted node-linker for containerd/k8s overlay filesystem compatibility
52
- # This must be set AFTER ph init and in the project directory
53
- RUN pnpm config set node-linker hoisted --location project
54
-
55
56
  # Install curl for health checks
56
57
  RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
57
58
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@powerhousedao/switchboard",
3
3
  "type": "module",
4
- "version": "5.2.0-staging.11",
4
+ "version": "5.2.0-staging.12",
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.2.0-staging.11",
46
- "@powerhousedao/reactor": "5.2.0-staging.11",
47
- "@powerhousedao/reactor-api": "5.2.0-staging.11",
48
- "document-drive": "5.2.0-staging.11",
49
- "@renown/sdk": "5.2.0-staging.11",
50
- "document-model": "5.2.0-staging.11"
45
+ "@powerhousedao/reactor": "5.2.0-staging.12",
46
+ "@powerhousedao/config": "5.2.0-staging.12",
47
+ "@powerhousedao/reactor-api": "5.2.0-staging.12",
48
+ "@renown/sdk": "5.2.0-staging.12",
49
+ "document-drive": "5.2.0-staging.12",
50
+ "document-model": "5.2.0-staging.12"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/express": "^4.17.25",