Skip to content

Commit

Permalink
Update dependency upgrades - non-major (#255)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Karl Horky <[email protected]>
  • Loading branch information
renovate[bot] and karlhorky authored Jul 19, 2024
1 parent befa3f1 commit a2133e4
Show file tree
Hide file tree
Showing 3 changed files with 146 additions and 172 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import walkSync from 'walk-sync';
const isMatch = micromatch.isMatch;

if (process.argv[2] && /--help|-h/.test(process.argv[2])) {
const version = /** @type {string} */ (
JSON.parse(readFileSync('./package.json', 'utf-8')).version
const packageJson = /** @type {{ version: string }} */ (
JSON.parse(readFileSync('./package.json', 'utf-8'))
);
console.log(`mdx-local-link-checker ${version}
console.log(`mdx-local-link-checker ${packageJson.version}
Usage: mdx-local-link-checker [dir] [basepath] [ignorePattern]
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
},
"devDependencies": {
"@types/micromatch": "4.0.9",
"@types/node": "20.14.10",
"@types/node": "20.14.11",
"@types/unist": "3.0.2",
"eslint-config-upleveled": "8.5.0",
"prettier": "3.3.2",
"eslint-config-upleveled": "8.6.11",
"prettier": "3.3.3",
"typescript": "5.5.3"
}
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}
Loading

0 comments on commit a2133e4

Please sign in to comment.