Skip to content

Commit

Permalink
chore: name change
Browse files Browse the repository at this point in the history
  • Loading branch information
timoheddes committed Nov 27, 2023
1 parent be6857a commit 7127fe9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theddes/rabobank-assignment",
"version": "0.1.1",
"name": "rabo",
"version": "0.1.2",
"description": "Rabobank Customer Statement Processor",
"main": "dist/index.js",
"bin": {
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { generateTimestamp } from './utils';

const program = new Command();
program
.version('0.1.1')
.version('0.1.2')
.description('Rabobank Customer Statement Processor')
.option(
'-l, --ls [folder]',
Expand All @@ -22,7 +22,7 @@ program
const options = program.opts();

// Show help
if (options.help) {
if (options.help || !process.argv.slice(2).length) {
program.outputHelp();
}

Expand Down

0 comments on commit 7127fe9

Please sign in to comment.