From b341f7e339636193a17f14857bc4dfc245914e24 Mon Sep 17 00:00:00 2001 From: TheNetsky <56271887+TheNetsky@users.noreply.github.com> Date: Wed, 11 Oct 2023 20:55:45 +0200 Subject: [PATCH] 1.1.1 Fix accounts.json not being found when built. --- package.json | 2 +- tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e2e5593..45abd91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "microsoft-rewards-script", - "version": "1.1.0", + "version": "1.1.1", "description": "Automatically do tasks for Microsoft Rewards but in TS!", "main": "index.js", "engines": { diff --git a/tsconfig.json b/tsconfig.json index 87a17ab..2169095 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -63,7 +63,8 @@ "resolveJsonModule": true }, "include": [ - "src/**/*.ts" + "src/**/*.ts", + "src/accounts.json" ], "exclude": [ "node_modules"