mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2024-12-22 04:43:32 +01:00
Freshen generated index.js file.
This commit is contained in:
parent
d556c91b51
commit
b28d83ff24
1 changed files with 10 additions and 2 deletions
12
dist/index.js
vendored
12
dist/index.js
vendored
|
@ -50498,7 +50498,7 @@ const resolveAndRequire = __nccwpck_require__(2034);
|
||||||
|
|
||||||
// Variables
|
// Variables
|
||||||
const packageName = "markdownlint-cli2";
|
const packageName = "markdownlint-cli2";
|
||||||
const packageVersion = "0.15.0";
|
const packageVersion = "0.16.0";
|
||||||
const libraryName = "markdownlint";
|
const libraryName = "markdownlint";
|
||||||
const libraryVersion = getLibraryVersion();
|
const libraryVersion = getLibraryVersion();
|
||||||
const bannerMessage = `${packageName} v${packageVersion} (${libraryName} v${libraryVersion})`;
|
const bannerMessage = `${packageName} v${packageVersion} (${libraryName} v${libraryVersion})`;
|
||||||
|
@ -50565,11 +50565,18 @@ const importOrRequireResolve = async (dirOrDirs, id, noRequire) => {
|
||||||
const dirs = Array.isArray(dirOrDirs) ? dirOrDirs : [ dirOrDirs ];
|
const dirs = Array.isArray(dirOrDirs) ? dirOrDirs : [ dirOrDirs ];
|
||||||
const expandId = expandTildePath(id);
|
const expandId = expandTildePath(id);
|
||||||
const errors = [];
|
const errors = [];
|
||||||
|
// Try to load via require(...)
|
||||||
try {
|
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) {
|
} catch (error) {
|
||||||
errors.push(error);
|
errors.push(error);
|
||||||
}
|
}
|
||||||
|
// Try to load via import(...)
|
||||||
try {
|
try {
|
||||||
// eslint-disable-next-line n/no-unsupported-features/node-builtins
|
// eslint-disable-next-line n/no-unsupported-features/node-builtins
|
||||||
const isURL = !pathDefault.isAbsolute(expandId) && URL.canParse(expandId);
|
const isURL = !pathDefault.isAbsolute(expandId) && URL.canParse(expandId);
|
||||||
|
@ -50582,6 +50589,7 @@ const importOrRequireResolve = async (dirOrDirs, id, noRequire) => {
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
errors.push(error);
|
errors.push(error);
|
||||||
}
|
}
|
||||||
|
// Give up
|
||||||
throw new AggregateError(
|
throw new AggregateError(
|
||||||
errors,
|
errors,
|
||||||
`Unable to require or import module '${id}'.`
|
`Unable to require or import module '${id}'.`
|
||||||
|
|
Loading…
Reference in a new issue