Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50498,7 +50498,7 @@ const resolveAndRequire = __nccwpck_require__(2034);

// Variables
const packageName = "markdownlint-cli2";
const packageVersion = "0.15.0";
const packageVersion = "0.16.0";
const libraryName = "markdownlint";
const libraryVersion = getLibraryVersion();
const bannerMessage = `${packageName} v${packageVersion} (${libraryName} v${libraryVersion})`;
Expand Down Expand Up @@ -50565,11 +50565,18 @@ const importOrRequireResolve = async (dirOrDirs, id, noRequire) => {
const dirs = Array.isArray(dirOrDirs) ? dirOrDirs : [ dirOrDirs ];
const expandId = expandTildePath(id);
const errors = [];
// Try to load via require(...)
try {
return resolveAndRequire(dynamicRequire, expandId, dirs);
const isModule = /\.mjs$/iu.test(expandId);
if (!isModule) {
// Try not to use require for modules due to breaking change in Node 22.12:
// https://github.com/nodejs/node/releases/tag/v22.12.0
return resolveAndRequire(dynamicRequire, expandId, dirs);
}
} catch (error) {
errors.push(error);
}
// Try to load via import(...)
try {
// eslint-disable-next-line n/no-unsupported-features/node-builtins
const isURL = !pathDefault.isAbsolute(expandId) && URL.canParse(expandId);
Expand All @@ -50582,6 +50589,7 @@ const importOrRequireResolve = async (dirOrDirs, id, noRequire) => {
} catch (error) {
errors.push(error);
}
// Give up
throw new AggregateError(
errors,
`Unable to require or import module '${id}'.`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"dependencies": {
"@actions/core": "1.11.1",
"markdownlint-cli2": "0.15.0"
"markdownlint-cli2": "0.16.0"
},
"devDependencies": {
"@eslint/js": "9.16.0",
Expand Down
Loading