It is not an issue, frankly, but more like some kind of notes in case if some others happen to stumble upon this humble note and, well, in need of something like this.
In my case, a project that "requires obfuscation" (well, talk about those cases), it has quite some lines of code that requires doing something on __dirname like path.resolve(__dirname, '..', 'package.json') or so. They won't work as they are concatenated, obviously, and placed at the root of the directory.
Therefore, I have hacked something like the following to "kind of" conserve the __dirname for the module within. It is a rough hack and works for me here, but I am pretty sure it is not for everyone.
The __dirname gets uglified nicely so it would work within. Be noted that in my case I have only tested with cases where './' is the defacto root - it probably won't work if it is not the case.
Again it is a horrible, horrible, kind of hack. Not sure how useful it can be for any of you who are reading this, but, well, take it if you need something like that. YMMV, though.
It is not an issue, frankly, but more like some kind of notes in case if some others happen to stumble upon this humble note and, well, in need of something like this.
In my case, a project that "requires obfuscation" (well, talk about those cases), it has quite some lines of code that requires doing something on
__dirname
likepath.resolve(__dirname, '..', 'package.json')
or so. They won't work as they are concatenated, obviously, and placed at the root of the directory.Therefore, I have hacked something like the following to "kind of" conserve the
__dirname
for the module within. It is a rough hack and works for me here, but I am pretty sure it is not for everyone.The
__dirname
gets uglified nicely so it would work within. Be noted that in my case I have only tested with cases where'./'
is the defacto root - it probably won't work if it is not the case.Again it is a horrible, horrible, kind of hack. Not sure how useful it can be for any of you who are reading this, but, well, take it if you need something like that. YMMV, though.