From 14216f3acc055daea3c72142fc8ba3aa641429b7 Mon Sep 17 00:00:00 2001 From: Josef Date: Thu, 9 Nov 2023 19:04:58 +0100 Subject: [PATCH 1/2] fixed tslint bug wich caused build failure --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 51fd4025..ce62947f 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "start-sandbox": "npx tabextsandbox --config sandbox-config.json", "lint": "npm run jslint && npm run tslint", "jslint": "semistandard ./Samples/*/*.js", - "tslint": "./node_modules/.bin/tslint --config ./tslint.json ./Samples-Typescript/*/*.ts*", + "tslint": "npx tslint --config ./tslint.json ./Samples-Typescript/*/*.ts*", "dev": "concurrently --kill-others \"webpack --watch\" \"npm:start\"" }, "repository": { From 296bdcc2ae42ec447ce8e436308ec5d3a2b9d278 Mon Sep 17 00:00:00 2001 From: Josef Date: Thu, 9 Nov 2023 19:04:58 +0100 Subject: [PATCH 2/2] fixed tslint bug that caused a build failure --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 51fd4025..ce62947f 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "start-sandbox": "npx tabextsandbox --config sandbox-config.json", "lint": "npm run jslint && npm run tslint", "jslint": "semistandard ./Samples/*/*.js", - "tslint": "./node_modules/.bin/tslint --config ./tslint.json ./Samples-Typescript/*/*.ts*", + "tslint": "npx tslint --config ./tslint.json ./Samples-Typescript/*/*.ts*", "dev": "concurrently --kill-others \"webpack --watch\" \"npm:start\"" }, "repository": {