-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1427 from contentstack/fix/DX-51/deprecation-warning
fix: handle deprecation warning message
- Loading branch information
Showing
1 changed file
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
#!/usr/bin/env node | ||
// eslint-disable-next-line unicorn/prefer-top-level-await | ||
(async () => { | ||
const oclif = await import('@oclif/core'); | ||
await oclif.execute({ development: false, dir: __dirname }); | ||
try { | ||
// Store the original process.emitWarning function | ||
const originalEmitWarning = process.emitWarning; | ||
|
||
// Override process.emitWarning to filter out the punycode deprecation warning | ||
process.emitWarning = (warning, type, code, ...args) => { | ||
if (type === 'DeprecationWarning' && typeof warning === 'string' && warning.includes('punycode')) { | ||
// Ignore punycode deprecation warning | ||
return; | ||
} | ||
// Call the original emitWarning function for other warnings | ||
originalEmitWarning.call(process, warning, type, code, ...args); | ||
}; | ||
|
||
const oclif = await import('@oclif/core'); | ||
await oclif.execute({ development: false, dir: __dirname }); | ||
} catch (error) { | ||
console.error('An error occurred while executing oclif:', error); | ||
} | ||
})(); |