Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions packages/contentstack/bin/run.js
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);
}
})();