Skip to content

Commit

Permalink
fix(esbuild-meta): make filter default command
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Apr 15, 2024
1 parent 2bb17ee commit 7713c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/esbuild-meta/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { hideBin } from 'yargs/helpers';
import { argv } from 'node:process';
import { filterMetaCommand } from './lib/filter-meta.js';

yargs(hideBin(argv)).command(filterMetaCommand).parse();
yargs(hideBin(argv)).command('$0', 'Default Command is filter', filterMetaCommand).parse();

console.log('Esbuild Meta Completed Successfully!');

0 comments on commit 7713c7a

Please sign in to comment.