ignotum 0.0.4 → 0.0.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/src/cli/deploy.ts CHANGED
@@ -120,7 +120,7 @@ export const buildDeploymentArtifact = Effect.fn("Deploy.buildArtifact")(functio
120
120
  const client = yield* buildClient(appDirectory, clientOutput);
121
121
  const server = yield* buildServer(appDirectory, serverOutput, codegen.functionModules);
122
122
  const payloadFiles = yield* readArtifactDirectory(stagingDirectory);
123
- const inventory = yield* makeDeploymentInventory(payloadFiles);
123
+ const inventory = yield* makeDeploymentInventory(payloadFiles, client.routes);
124
124
  yield* fileSystem.writeFile(
125
125
  path.join(stagingDirectory, deploymentInventoryPath),
126
126
  inventory.bytes,