Output scriplet errors to console in dev build

This commit is contained in:
Raymond Hill 2023-08-08 10:29:54 -04:00
parent f8394ff2d5
commit 96d7b278b4
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -196,6 +196,7 @@ const lookupScriptlet = function(rawToken, mainMap, isolatedMap) {
content,
'// <<<< scriptlet end',
'} catch (e) {',
isDevBuild ? 'console.error(e);' : '',
'}',
].join('\n'));
};