UNPKG

@gkalpak/ng-maintain

Version:

A collection of command-line utilities to help maintain (AngularJS-related) GitHub repositories.

15 lines (11 loc) 296 B
#!/usr/bin/env node 'use strict'; // Imports - Local let diffWithHighlight = require('./lib/diff-with-highlight'); // Run _main(process.argv.slice(2)); // Functions - Definitions function _main(rawArgs) { diffWithHighlight(rawArgs). then(() => process.exit(0), () => process.exit(1)); }