UNPKG

hukum

Version:

An NPM module that displays Github Action progress in the terminal and aims to improve your development experience by printing status in realtime.

14 lines (11 loc) 234 B
#! /usr/bin/env node const hukum = require('../lib/hukum') // exit the process when enter is pressed process.stdin.resume() process.stdin.on('data', d => { process.exit(0) }) hukum.start() .then(() => { process.exit(0) })