mirror of
https://github.com/graphql-hive/console
synced 2026-04-22 15:07:18 +00:00
13 lines
224 B
JavaScript
Executable file
13 lines
224 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
// Suppress warnings from the CLI
|
|
process.removeAllListeners('warning');
|
|
|
|
const oclif = require('@oclif/core');
|
|
|
|
oclif
|
|
.execute({ dir: __dirname })
|
|
.catch(e => {
|
|
throw e;
|
|
})
|
|
.then(() => {});
|