Added missing changes and modified dist assets.
This commit is contained in:
parent
44225688bb
commit
a82ffc67b3
11
dist/index.js
generated
vendored
11
dist/index.js
generated
vendored
@ -58174,8 +58174,15 @@ class Directives {
|
|||||||
if (!suffix)
|
if (!suffix)
|
||||||
onError(`The ${source} tag has no suffix`);
|
onError(`The ${source} tag has no suffix`);
|
||||||
const prefix = this.tags[handle];
|
const prefix = this.tags[handle];
|
||||||
if (prefix)
|
if (prefix) {
|
||||||
return prefix + decodeURIComponent(suffix);
|
try {
|
||||||
|
return prefix + decodeURIComponent(suffix);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
onError(String(error));
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (handle === '!')
|
if (handle === '!')
|
||||||
return source; // local tag
|
return source; // local tag
|
||||||
onError(`Could not resolve tag: ${source}`);
|
onError(`Could not resolve tag: ${source}`);
|
||||||
|
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user