You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
432 B
22 lines
432 B
|
7 months ago
|
const diagnostics = require('./');
|
||
|
|
|
||
|
|
//
|
||
|
|
// Override the existing `debug` call so it will use `diagnostics` instead
|
||
|
|
// of the `debug` module.
|
||
|
|
//
|
||
|
|
try {
|
||
|
|
var key = require.resolve('debug');
|
||
|
|
|
||
|
|
require.cache[key] = {
|
||
|
|
exports: diagnostics,
|
||
|
|
filename: key,
|
||
|
|
loaded: true,
|
||
|
|
id: key
|
||
|
|
};
|
||
|
|
} catch (e) { /* We don't really care if it fails */ }
|
||
|
|
|
||
|
|
//
|
||
|
|
// Export the default import as exports again.
|
||
|
|
//
|
||
|
|
module.exports = diagnostics;
|