markdown_link_checker_sc 0.0.133 → 0.0.134
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -131,7 +131,7 @@ async function loadJSONFileToReportOn(filePath) {
|
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
// Function for loading JSON file that contains files to ignore (such as _summary.md)
|
|
134
|
-
// This will be in
|
|
134
|
+
// This will be in _link_checker_sc/ignorelist.json relative to root.
|
|
135
135
|
async function loadJSONFileToIgnore(filePath) {
|
|
136
136
|
sharedData.options.log.includes("functions")
|
|
137
137
|
? console.log(`Function: loadJSONFileToIgnore(): filePath: ${filePath}`)
|
|
@@ -240,7 +240,7 @@ const processDirectory = async (dir) => {
|
|
|
240
240
|
: (sharedData.options.files = []);
|
|
241
241
|
|
|
242
242
|
sharedData.options.ignoreFiles = await loadJSONFileToIgnore(
|
|
243
|
-
"
|
|
243
|
+
"_link_checker_sc/ignorefile.json"
|
|
244
244
|
);
|
|
245
245
|
|
|
246
246
|
// process containing markdown, return results which includes links, headings, id anchors
|