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/README.md +3 -0
- package/dist/cli/bin.mjs +230 -82
- package/dist/cli/bin.mjs.map +1 -1
- package/dist/runtime/client.js +10 -1
- package/dist/runtime/client.js.map +1 -1
- package/package.json +4 -4
- package/src/cli/build/client.ts +15 -7
- package/src/cli/build/public.ts +182 -0
- package/src/cli/build/server.ts +1 -0
- package/src/cli/client-config.ts +7 -0
- package/src/cli/deploy.ts +1 -1
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,
|