From 0dd64ba07e2ede083f14905d1cf3eba553229f4f Mon Sep 17 00:00:00 2001 From: Pl217 Date: Tue, 8 Feb 2022 13:00:03 +0100 Subject: [PATCH 1/3] Remove unused, commented options from `tsconfig.json` --- tsconfig.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 65660f10..26742259 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,10 +7,6 @@ "declaration": true, "outDir": "./", "removeComments": false, - // "importHelpers": true, /* Import emit helpers from 'tslib'. */ - // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ - // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ - "strict": true, "esModuleInterop": true, "skipLibCheck": true, From 1431547578c75698bb5a7aa1aab06aa9d31101ad Mon Sep 17 00:00:00 2001 From: Pl217 Date: Tue, 8 Feb 2022 13:00:43 +0100 Subject: [PATCH 2/3] Set ES2021 as Typescript compilation target --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 26742259..e2b0bc8e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ - "target": "es2019", + "target": "es2021", "module": "commonjs", "declaration": true, "outDir": "./", From 34113cd4a018e5d73404459c45f55fe1774b843f Mon Sep 17 00:00:00 2001 From: Pl217 Date: Wed, 9 Feb 2022 12:34:29 +0100 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=20`v4.0.?= =?UTF-8?q?0`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 536e1037..e618d40a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@unocha/hpc-api-core", - "version": "3.1.0", + "version": "4.0.0", "description": "Core libraries supporting HPC.Tools API Backend", "license": "Apache-2.0", "private": false,