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.
Files changed (2) hide show
  1. package/index.js +2 -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 logs/ignorelist.json relative to root.
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
- "logs/ignorefile.json"
243
+ "_link_checker_sc/ignorefile.json"
244
244
  );
245
245
 
246
246
  // process containing markdown, return results which includes links, headings, id anchors
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markdown_link_checker_sc",
3
- "version": "0.0.133",
3
+ "version": "0.0.134",
4
4
  "description": "Markdown Link Checker",
5
5
  "main": "index.js",
6
6
  "scripts": {