Added missing changes and modified dist assets.

This commit is contained in:
GitHub Action 2023-10-14 10:22:57 +00:00 committed by renovate[bot]
parent 44225688bb
commit a82ffc67b3
2 changed files with 10 additions and 3 deletions

9
dist/index.js generated vendored
View File

@ -58174,8 +58174,15 @@ class Directives {
if (!suffix)
onError(`The ${source} tag has no suffix`);
const prefix = this.tags[handle];
if (prefix)
if (prefix) {
try {
return prefix + decodeURIComponent(suffix);
}
catch (error) {
onError(String(error));
return null;
}
}
if (handle === '!')
return source; // local tag
onError(`Could not resolve tag: ${source}`);

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long