fixed httpclient
This commit is contained in:
parent
a282dac6cd
commit
557c157228
10 changed files with 603 additions and 427 deletions
|
|
@ -4,10 +4,14 @@ Write-Host "Building and installing new libraries..." -ForegroundColor Cyan
|
|||
|
||||
# Build order is important due to dependencies
|
||||
$libs = @(
|
||||
"types",
|
||||
"utils",
|
||||
"event-bus",
|
||||
"api-client"
|
||||
"types", # Base types - no dependencies
|
||||
"logger", # Logging utilities - depends on types
|
||||
"config", # Configuration - depends on types
|
||||
"utils", # Utilities - depends on types and config
|
||||
"http-client", # HTTP client - depends on types, config, logger
|
||||
"postgres-client", # PostgreSQL client - depends on types, config, logger
|
||||
"mongodb-client", # MongoDB client - depends on types, config, logger
|
||||
"questdb-client" # QuestDB client - depends on types, config, logger
|
||||
)
|
||||
|
||||
# Build each library in order
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue