Skip to content

Commit 5cd9c76

Browse files
targoszertosh
authored andcommitted
fix: use require.main instead of module.parent
The latter is a deprecated API. Refs: https://nodejs.org/dist/latest-v15.x/docs/api/deprecations.html#DEP0144
1 parent 20dcd83 commit 5cd9c76

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

bench/_measure.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = (name, withCache, callback) => {
77
logs.push(`node: ${parseInt(process.uptime() * 1000, 10)}ms`);
88

99
// So each test gets its own cache
10-
module.filename = module.parent.filename;
10+
module.filename = require.main.filename;
1111
s = Date.now();
1212
if (withCache) require('../v8-compile-cache');
1313
logs.push(`require-cache: ${Date.now() - s}ms`);

test/fixtures/print-main-name.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log(require('../..').__TEST__.getMainName());

test/fixtures/print-parent-name.js

-1
This file was deleted.

test/getParentName-test.js test/getMainName-test.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tap.beforeEach(cb => {
1111
tap.test('handles --require', t => {
1212
const ps = child_process.spawnSync(
1313
process.execPath,
14-
['--require', '..', require.resolve('./fixtures/print-parent-name')],
14+
['--require', '..', require.resolve('./fixtures/print-main-name')],
1515
{cwd: __dirname}
1616
);
1717
t.equal(ps.status, 0);
@@ -20,12 +20,12 @@ tap.test('handles --require', t => {
2020
t.end();
2121
});
2222

23-
tap.test('bad module.parent.filename', t => {
23+
tap.test('bad require.main.filename', t => {
2424
const ps = child_process.spawnSync(
2525
process.execPath,
2626
['--eval', `
2727
module.filename = null;
28-
console.log(require('..').__TEST__.getParentName());
28+
console.log(require('..').__TEST__.getMainName());
2929
`],
3030
{cwd: __dirname}
3131
);
@@ -35,7 +35,7 @@ tap.test('bad module.parent.filename', t => {
3535
t.end();
3636
});
3737

38-
tap.test('module.parent.filename works with --eval', t => {
38+
tap.test('require.main.filename works with --eval', t => {
3939
const ps = child_process.spawnSync(
4040
process.execPath,
4141
['--eval', 'require("..")'],
@@ -46,7 +46,7 @@ tap.test('module.parent.filename works with --eval', t => {
4646
t.end();
4747
});
4848

49-
tap.test('module.parent.filename works with --require', t => {
49+
tap.test('require.main.filename works with --require', t => {
5050
const ps = child_process.spawnSync(
5151
process.execPath,
5252
['--require', '..'],
@@ -57,7 +57,7 @@ tap.test('module.parent.filename works with --require', t => {
5757
t.end();
5858
});
5959

60-
tap.test('module.parent.filename works with as arg script', t => {
60+
tap.test('require.main.filename works with as arg script', t => {
6161
const ps = child_process.spawnSync(
6262
process.execPath,
6363
[require.resolve('..')],

v8-compile-cache.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -328,15 +328,15 @@ function getCacheDir() {
328328
return cacheDir;
329329
}
330330

331-
function getParentName() {
332-
// `module.parent.filename` is undefined or null when:
331+
function getMainName() {
332+
// `require.main.filename` is undefined or null when:
333333
// * node -e 'require("v8-compile-cache")'
334334
// * node -r 'v8-compile-cache'
335335
// * Or, requiring from the REPL.
336-
const parentName = module.parent && typeof module.parent.filename === 'string'
337-
? module.parent.filename
336+
const mainName = require.main && typeof require.main.filename === 'string'
337+
? require.main.filename
338338
: process.cwd();
339-
return parentName;
339+
return mainName;
340340
}
341341

342342
//------------------------------------------------------------------------------
@@ -345,7 +345,7 @@ function getParentName() {
345345

346346
if (!process.env.DISABLE_V8_COMPILE_CACHE && supportsCachedData()) {
347347
const cacheDir = getCacheDir();
348-
const prefix = getParentName();
348+
const prefix = getMainName();
349349
const blobStore = new FileSystemBlobStore(cacheDir, prefix);
350350

351351
const nativeCompileCache = new NativeCompileCache();
@@ -367,5 +367,5 @@ module.exports.__TEST__ = {
367367
slashEscape,
368368
supportsCachedData,
369369
getCacheDir,
370-
getParentName,
370+
getMainName,
371371
};

0 commit comments

Comments
 (0)