Skip to content

Commit

Permalink
chore: 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timoheddes committed Nov 27, 2023
1 parent 704eb5e commit cd1e688
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@theddes/rabobank-assignment",
"version": "0.0.9",
"version": "0.1.0",
"description": "Rabobank Customer Statement Processor",
"main": "dist/index.js",
"bin": {
"rabo": "./dist/index.js"
},
"scripts": {
"build": "npx tsc",
"build": "rimraf dist && npx tsc",
"test": "jest --coverage --verbose"
},
"repository": {
Expand Down
6 changes: 2 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
#! /usr/bin/env node

import packageJson from '../package.json';

import { createReport, scanFolder } from '@cli';
import { generateTimestamp } from '@utils';
import { Command } from 'commander';

const program = new Command();
program
.version(packageJson['version'])
.description(packageJson['description'])
.version('0.1.0')
.description('Rabobank Customer Statement Processor')
.option(
'-l, --ls [folder]',
'List files and records in folder (folder optional, defaults to current folder)',
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"noEmit": false,
"outDir": "dist",
"removeComments": true,
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"strict": true,
Expand Down

0 comments on commit cd1e688

Please sign in to comment.