mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
cf46746b8a
PR-URL: https://github.com/nodejs/node/pull/45549 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
35 lines
774 B
JavaScript
35 lines
774 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const commonPath = require.resolve('../common');
|
|
const initHooks = require('./init-hooks');
|
|
const verifyGraph = require('./verify-graph');
|
|
const fs = require('fs');
|
|
|
|
const hooks = initHooks();
|
|
hooks.enable();
|
|
|
|
function onchange() { }
|
|
// Install first file watcher
|
|
fs.watchFile(__filename, onchange);
|
|
|
|
// Install second file watcher
|
|
fs.watchFile(commonPath, onchange);
|
|
|
|
// Remove first file watcher
|
|
fs.unwatchFile(__filename);
|
|
|
|
// Remove second file watcher
|
|
fs.unwatchFile(commonPath);
|
|
|
|
process.on('exit', onexit);
|
|
|
|
function onexit() {
|
|
hooks.disable();
|
|
verifyGraph(
|
|
hooks,
|
|
[ { type: 'STATWATCHER', id: 'statwatcher:1', triggerAsyncId: null },
|
|
{ type: 'STATWATCHER', id: 'statwatcher:2', triggerAsyncId: null } ],
|
|
);
|
|
}
|