@treeseed/sdk 0.6.42 → 0.6.43

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.
@@ -942,6 +942,15 @@ async function syncRailwayServiceRuntimeConfigurationAfterDeploy(tenantRoot, ser
942
942
  runtimeMode: service.runtimeMode,
943
943
  env
944
944
  }) : null;
945
+ await upsertRailwayVariables({
946
+ projectId: project.id,
947
+ environmentId: environment.id,
948
+ serviceId: railwayService.id,
949
+ variables: {
950
+ TREESEED_SKIP_PACKAGE_PREPARE: "1"
951
+ },
952
+ env
953
+ });
945
954
  const volumeMountPath = service.runnerPool?.volumeMountPath ?? WORKER_RUNNER_VOLUME_MOUNT_PATH;
946
955
  const volumeConfiguration = wantsRunnerVolume ? await ensureRailwayServiceVolumeWithCliFallback({
947
956
  tenantRoot,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@treeseed/sdk",
3
- "version": "0.6.42",
3
+ "version": "0.6.43",
4
4
  "description": "Shared Treeseed SDK for content-backed and D1-backed object models.",
5
5
  "license": "AGPL-3.0-only",
6
6
  "repository": {