module: force require('process') to return a reference to process#206
module: force require('process') to return a reference to process#206lxe wants to merge 1 commit intonodejs:v0.12from
Conversation
|
Why not |
|
@vkurchatkin there were a few ways to do this... making |
|
I prefer the lib/process.js approach. Anything that doesn't require hacking lib/module.js. |
|
@bnoordhuis added |
lib/process.js
Outdated
There was a problem hiding this comment.
Can you change this to either // Copyright io.js contributors or your own / your company's name?
|
LGTM technically but as the discussion in #157 doesn't appear to have reached a conclusion, I won't merge it straight away. I'll bring it up at the next TC meeting unless enough TC members +1 it before that. |
|
Happy holidays everyone! |
|
@lxe Still one nit but if you fix that, I'll land it. Thanks. |
This makes require('process') always return a reference to the global
process object.
|
@bnoordhuis totally missed that one! Thanks. |
This makes require('process') always return a reference to the global
process object.
PR-URL: #206
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
|
Cheers Aleksey, landed in d8586ea. I had to reword the first line to make it fit in 50 columns. Thanks! |
|
Great stuff @bnoordhuis. thank you! |
|
ftr, agreed to merge this in TC meeting 2014-12-30 #229 |
This makes require('process') always return a reference to the global process object. Fixes #157