diff --git a/CHANGELOG.md b/CHANGELOG.md index f741311..18b5648 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ New features: Bugfixes: Other improvements: +- Use node: prefix imports in FFI to preferentially force builtin module usage (#24) ## [v5.0.0](https://github.com/purescript-node/purescript-node-path/releases/tag/v5.0.0) - 2022-04-27 diff --git a/src/Node/Path.js b/src/Node/Path.js index 908c0d9..eaad2de 100644 --- a/src/Node/Path.js +++ b/src/Node/Path.js @@ -1,4 +1,4 @@ -import path from "path"; +import path from "node:path"; export const normalize = path.normalize; export function concat(segments) {