Skip to content

Commit 2d03799

Browse files
authored
chore: use node prefix imports (#24)
* chore: use node prefix imports change import to be prefixed with node: to indicate builtin module usage * add changelog entry
1 parent d5f08cf commit 2d03799

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ New features:
1111
Bugfixes:
1212

1313
Other improvements:
14+
- Use node: prefix imports in FFI to preferentially force builtin module usage (#24)
1415

1516
## [v5.0.0](https://github.com/purescript-node/purescript-node-path/releases/tag/v5.0.0) - 2022-04-27
1617

src/Node/Path.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import path from "path";
1+
import path from "node:path";
22
export const normalize = path.normalize;
33

44
export function concat(segments) {

0 commit comments

Comments
 (0)