UNPKG

ignore-sync

Version:

a CLI tool to build and sync *ignore files across files and repositories

13 lines (8 loc) 211 B
#!/usr/bin/env node import process from 'node:process' import app from './app.js' const cwd = process.cwd() const paths = process.argv.slice(2) app(cwd, paths).catch((err) => { console.error(err.stack) })