From 3f231e4fe50d858f5ff6d0fb8d7007a47a91ea6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLucas?= Date: Mon, 23 Oct 2023 11:17:19 -0300 Subject: [PATCH] fix build --- CHANGELOG.MD | 3 +++ package.json | 2 +- src/utils/config/index.ts | 2 +- tsconfig.json | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 00a4db06..74a6ea81 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,5 +1,8 @@ # Releases +## VERSION 2.0.3 +- Hotfix build + ## VERSION 2.0.2 - Adjusted user types - Adjusted user merchant order diff --git a/package.json b/package.json index 55e15212..818afbaf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mercadopago", - "version": "2.0.2", + "version": "2.0.3", "description": "Mercadopago SDK for Node.js", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/utils/config/index.ts b/src/utils/config/index.ts index 3340120a..f4ef4317 100644 --- a/src/utils/config/index.ts +++ b/src/utils/config/index.ts @@ -5,7 +5,7 @@ export class AppConfig { static readonly BASE_URL = 'https://api.mercadopago.com'; static readonly PRODUCT_ID = 'bc32b6ntrpp001u8nhkg'; - static SDK_VERSION = '2.0.2'; + static SDK_VERSION = '2.0.3'; static readonly Headers = { AUTHORIZATION: 'Authorization', diff --git a/tsconfig.json b/tsconfig.json index f6808185..23bc879c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,7 @@ "sourceMap": false, "outDir": "./dist", "baseUrl": "./", - "rootDir": ".", + "rootDir": "./src", "resolveJsonModule": true, "experimentalDecorators": true, "emitDecoratorMetadata": true,