From fc40d7fa831c186ce2d76a7842d7a530db2fff57 Mon Sep 17 00:00:00 2001 From: Max P Date: Fri, 16 Aug 2024 12:10:15 +0200 Subject: [PATCH] Update coverage URL to relative path Changed the coverage URL from an absolute web link to a relative file path to ensure compatibility with local file system references. This facilitates easier navigation and access to the coverage reports in different environments. --- scripts/fix-coverage-paths.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fix-coverage-paths.cjs b/scripts/fix-coverage-paths.cjs index 090f4c4..b0ca6ce 100644 --- a/scripts/fix-coverage-paths.cjs +++ b/scripts/fix-coverage-paths.cjs @@ -2,7 +2,7 @@ const fs = require('fs'); const path = require('path'); const coverageDir = path.join(__dirname, '..', '.locale', 'coverage'); -const typedocUrl = 'https://pxammaxp.github.io/TSinjex/'; +const typedocUrl = '../../'; const getAllFiles = (dir, files = []) => { fs.readdirSync(dir).forEach(file => {