diff --git a/package-lock.json b/package-lock.json index 105e61b..07ea52f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@theddes/rabobank-assignment", - "version": "0.0.8a", + "version": "0.0.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@theddes/rabobank-assignment", - "version": "0.0.8a", + "version": "0.0.9", "license": "ISC", "dependencies": { "chalk": "4.1.2", diff --git a/package.json b/package.json index 2f779ab..38d7c49 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/index.ts b/src/index.ts index 7cff006..0bd0276 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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)', diff --git a/tsconfig.json b/tsconfig.json index 24327f2..ac8c151 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,6 @@ "noEmit": false, "outDir": "dist", "removeComments": true, - "resolveJsonModule": true, "skipDefaultLibCheck": true, "skipLibCheck": true, "strict": true,