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.
This commit is contained in:
2024-08-16 12:10:15 +02:00
committed by Max P.
parent 7258f3813f
commit fc40d7fa83

View File

@@ -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 => {