File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ Bugfixes:
1212
1313Other improvements:
1414
15+ ## [ v11.0.1] ( https://github.com/purescript-node/purescript-node-process/releases/tag/v11.0.1 ) - 2023-07-21
16+
17+ Bugfixes:
18+ - Fix FFI for ` channelRef ` /` channelUnref ` (#40 by @JordanMartinez )
19+
1520## [ v11.0.0] ( https://github.com/purescript-node/purescript-node-process/releases/tag/v11.0.0 ) - 2023-07-21
1621
1722Breaking changes:
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ export { process };
44export const abortImpl = process . abort ? ( ) => process . abort ( ) : null ;
55export const argv = ( ) => process . argv . slice ( ) ;
66export const argv0 = ( ) => process . argv0 ;
7- export const channelRefImpl = process . channel . ref ? ( ) => process . channel . ref ( ) : null ;
8- export const channelUnrefImpl = process . channel . unref ? ( ) => process . channel . unref ( ) : null ;
7+ export const channelRefImpl = process . channel && process . channel . ref ? ( ) => process . channel . ref ( ) : null ;
8+ export const channelUnrefImpl = process . channel && process . channel . unref ? ( ) => process . channel . unref ( ) : null ;
99export const chdirImpl = ( dir ) => process . chdir ( dir ) ;
1010export const config = ( ) => Object . assign ( { } , process . config ) ;
1111export const connected = ( ) => process . connected ;
You can’t perform that action at this time.
0 commit comments