Skip to content

Commit

Permalink
use re-exports strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed Dec 16, 2024
1 parent ab4dd0a commit 0da4794
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .changeset/serious-eels-rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@effect/platform-node": minor
---

upgrade undici to 7.x and move to peerDependencies
upgrade undici to 7.x and expose re-exports in Undici module
7 changes: 3 additions & 4 deletions packages/platform-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,17 @@
"dependencies": {
"@effect/platform-node-shared": "workspace:^",
"mime": "^3.0.0",
"undici": "^7.1.0",
"ws": "^8.18.0"
},
"peerDependencies": {
"@effect/platform": "workspace:^",
"effect": "workspace:^",
"undici": "^7.1.0"
"effect": "workspace:^"
},
"devDependencies": {
"@effect/platform": "workspace:^",
"@types/mime": "^3.0.4",
"@types/ws": "^8.5.12",
"effect": "workspace:^",
"undici": "^7.1.0"
"effect": "workspace:^"
}
}
2 changes: 1 addition & 1 deletion packages/platform-node/src/NodeHttpClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import type * as Layer from "effect/Layer"
import type * as Scope from "effect/Scope"
import type * as Http from "node:http"
import type * as Https from "node:https"
import type * as Undici from "undici"
import * as internal from "./internal/httpClient.js"
import * as internalUndici from "./internal/httpClientUndici.js"
import type * as Undici from "./Undici.js"

/**
* @since 1.0.0
Expand Down
9 changes: 9 additions & 0 deletions packages/platform-node/src/Undici.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**
* @since 1.0.0
*/

/**
* @since 1.0.0
* @category undici
*/
export * from "undici"
5 changes: 5 additions & 0 deletions packages/platform-node/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,8 @@ export * as NodeWorker from "./NodeWorker.js"
* @since 1.0.0
*/
export * as NodeWorkerRunner from "./NodeWorkerRunner.js"

/**
* @since 1.0.0
*/
export * as Undici from "./Undici.js"
2 changes: 1 addition & 1 deletion packages/platform-node/src/internal/httpClientUndici.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ import * as Layer from "effect/Layer"
import * as Option from "effect/Option"
import type * as Scope from "effect/Scope"
import type * as Stream from "effect/Stream"
import * as Undici from "undici"
import type * as NodeClient from "../NodeHttpClient.js"
import * as NodeStream from "../NodeStream.js"
import * as Undici from "../Undici.js"

/** @internal */
export const Dispatcher = Context.GenericTag<NodeClient.Dispatcher, Undici.Dispatcher>(
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0da4794

Please sign in to comment.