#!/usr/bin/env node const path = require( 'path' ); const yargs = require( 'yargs' ); const { getEffectiveTreeAsTree, getEffectiveTreeAsList } = require( './index.js' ); const args = yargs .usage( 'Usage: $0' ) .options( { root: { alias: 'r', describe: 'Path of the root package.json. Defaults to ./package.json', default: path.join( process.cwd(), 'package.json' ), }, output: { alias: 'o', describe: 'Output to generate', choices: [ 'tree', 'list' ], default: 'tree', }, } ) .example( '$0', 'generate the tree for the project in the current directory' ) .example( '$0 --root "./src"', 'generate the tree for the project inside ./src' ) .help( 'h' ) .alias( 'h', 'help' ).argv; let tree; if ( args.output === 'tree' ) { tree = getEffectiveTreeAsTree( args.root ); } else { tree = getEffectiveTreeAsList( args.root ); } console.log( tree );