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:
@@ -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 => {
|
||||
|
Reference in New Issue
Block a user