UNPKG

@graphql-hive/cli

Version:

A CLI util to manage and control your GraphQL Hive

14 lines (10 loc) 224 B
#!/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(() => {});