Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions guides/deploy/microservices.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,16 +356,12 @@ build-parameters:
commands:
- npm ci
- npx cds build ./shared-db --for hana --production
- npx cds build ./orders --for nodejs --production --ws-pack # [!code ++]
- npx cds build ./orders --for nodejs --production # [!code ++]
- npx cds build ./reviews --for nodejs --production # [!code ++]
- npx cds build ./bookstore --for nodejs --production --ws-pack # [!code ++]
- npx cds build ./bookstore --for nodejs --production # [!code ++]
```
:::

::: info --ws-pack
Note that we use the *--ws-pack* option for some modules. It's important for node modules referencing other repository-local node modules.
:::


### Authentication

Expand Down
Loading