@digipair/skill-web 0.71.4 → 0.71.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.esm.js +7 -7
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -23903,14 +23903,14 @@ function indent(str, spaces) {
|
|
|
23903
23903
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23904
23904
|
// match is required
|
|
23905
23905
|
if (!match) {
|
|
23906
|
-
return nextMatch = nextMatch1,
|
|
23906
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23907
23907
|
v: nextMatch1
|
|
23908
23908
|
};
|
|
23909
23909
|
}
|
|
23910
23910
|
var token = match.token, offset = match.offset;
|
|
23911
23911
|
i1 += offset;
|
|
23912
23912
|
if (token === " ") {
|
|
23913
|
-
return nextMatch = nextMatch1,
|
|
23913
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23914
23914
|
}
|
|
23915
23915
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
|
23916
23916
|
token
|
|
@@ -23929,7 +23929,7 @@ function indent(str, spaces) {
|
|
|
23929
23929
|
if (contextKeys.some(function(el) {
|
|
23930
23930
|
return el.startsWith(name);
|
|
23931
23931
|
})) {
|
|
23932
|
-
return nextMatch = nextMatch1,
|
|
23932
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23933
23933
|
}
|
|
23934
23934
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23935
23935
|
return el === name;
|
|
@@ -23948,9 +23948,9 @@ function indent(str, spaces) {
|
|
|
23948
23948
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23949
23949
|
return el.startsWith(name);
|
|
23950
23950
|
})) {
|
|
23951
|
-
return nextMatch = nextMatch1,
|
|
23951
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23952
23952
|
}
|
|
23953
|
-
return nextMatch = nextMatch1,
|
|
23953
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23954
23954
|
v: nextMatch1
|
|
23955
23955
|
};
|
|
23956
23956
|
};
|
|
@@ -27881,8 +27881,8 @@ const applyTemplate = (value, context)=>{
|
|
|
27881
27881
|
};
|
|
27882
27882
|
const executePins = async (settingsOrigin, context = {})=>{
|
|
27883
27883
|
var _settings_conditions, _settings_conditions1;
|
|
27884
|
-
_config.LOGGER('INFO', context.__PATH__, 'execute:start', context);
|
|
27885
27884
|
let settings = preparePinsSettings(settingsOrigin, context);
|
|
27885
|
+
_config.LOGGER('INFO', context.__PATH__, `execute:${settings.element}:${settings.library}:start`, context, settings);
|
|
27886
27886
|
const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
|
|
27887
27887
|
const config = context.config || {};
|
|
27888
27888
|
let version = (config.VERSIONS || {})[settings.library] || 'latest';
|
|
@@ -27940,7 +27940,7 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27940
27940
|
throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
|
|
27941
27941
|
}
|
|
27942
27942
|
const result = await pins(settings.properties, settings.pins, context);
|
|
27943
|
-
_config.LOGGER('INFO', context.__PATH__,
|
|
27943
|
+
_config.LOGGER('INFO', context.__PATH__, `execute:${settings.element}:${settings.library}:end`, context, result);
|
|
27944
27944
|
return result;
|
|
27945
27945
|
};
|
|
27946
27946
|
const executePinsList = async (pinsSettingsList, context, path = 'root')=>{
|