@digipair/engine 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.cjs.js +2 -2
- package/index.esm.js +7 -7
- package/package.json +1 -1
package/index.cjs.js
CHANGED
@@ -8204,8 +8204,8 @@ const applyTemplate = (value, context)=>{
|
|
8204
8204
|
};
|
8205
8205
|
const executePins = async (settingsOrigin, context = {})=>{
|
8206
8206
|
var _settings_conditions, _settings_conditions1;
|
8207
|
-
_config.LOGGER('INFO', context.__PATH__, 'execute:start', context);
|
8208
8207
|
let settings = preparePinsSettings(settingsOrigin, context);
|
8208
|
+
_config.LOGGER('INFO', context.__PATH__, `execute:${settings.element}:${settings.library}:start`, context, settings);
|
8209
8209
|
const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
|
8210
8210
|
const config = context.config || {};
|
8211
8211
|
let version = (config.VERSIONS || {})[settings.library] || 'latest';
|
@@ -8263,7 +8263,7 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
8263
8263
|
throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
|
8264
8264
|
}
|
8265
8265
|
const result = await pins(settings.properties, settings.pins, context);
|
8266
|
-
_config.LOGGER('INFO', context.__PATH__,
|
8266
|
+
_config.LOGGER('INFO', context.__PATH__, `execute:${settings.element}:${settings.library}:end`, context, result);
|
8267
8267
|
return result;
|
8268
8268
|
};
|
8269
8269
|
const executePinsList = async (pinsSettingsList, context, path = 'root')=>{
|
package/index.esm.js
CHANGED
@@ -23899,14 +23899,14 @@ function indent(str, spaces) {
|
|
23899
23899
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
23900
23900
|
// match is required
|
23901
23901
|
if (!match) {
|
23902
|
-
return nextMatch = nextMatch1,
|
23902
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
23903
23903
|
v: nextMatch1
|
23904
23904
|
};
|
23905
23905
|
}
|
23906
23906
|
var token = match.token, offset = match.offset;
|
23907
23907
|
i1 += offset;
|
23908
23908
|
if (token === " ") {
|
23909
|
-
return nextMatch = nextMatch1,
|
23909
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
23910
23910
|
}
|
23911
23911
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
23912
23912
|
token
|
@@ -23925,7 +23925,7 @@ function indent(str, spaces) {
|
|
23925
23925
|
if (contextKeys.some(function(el) {
|
23926
23926
|
return el.startsWith(name);
|
23927
23927
|
})) {
|
23928
|
-
return nextMatch = nextMatch1,
|
23928
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
23929
23929
|
}
|
23930
23930
|
if (dateTimeIdentifiers.some(function(el) {
|
23931
23931
|
return el === name;
|
@@ -23944,9 +23944,9 @@ function indent(str, spaces) {
|
|
23944
23944
|
if (dateTimeIdentifiers.some(function(el) {
|
23945
23945
|
return el.startsWith(name);
|
23946
23946
|
})) {
|
23947
|
-
return nextMatch = nextMatch1,
|
23947
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
23948
23948
|
}
|
23949
|
-
return nextMatch = nextMatch1,
|
23949
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
23950
23950
|
v: nextMatch1
|
23951
23951
|
};
|
23952
23952
|
};
|
@@ -27883,8 +27883,8 @@ const applyTemplate = (value, context)=>{
|
|
27883
27883
|
};
|
27884
27884
|
const executePins = async (settingsOrigin, context = {})=>{
|
27885
27885
|
var _settings_conditions, _settings_conditions1;
|
27886
|
-
_config.LOGGER('INFO', context.__PATH__, 'execute:start', context);
|
27887
27886
|
let settings = preparePinsSettings(settingsOrigin, context);
|
27887
|
+
_config.LOGGER('INFO', context.__PATH__, `execute:${settings.element}:${settings.library}:start`, context, settings);
|
27888
27888
|
const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
|
27889
27889
|
const config = context.config || {};
|
27890
27890
|
let version = (config.VERSIONS || {})[settings.library] || 'latest';
|
@@ -27942,7 +27942,7 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
27942
27942
|
throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
|
27943
27943
|
}
|
27944
27944
|
const result = await pins(settings.properties, settings.pins, context);
|
27945
|
-
_config.LOGGER('INFO', context.__PATH__,
|
27945
|
+
_config.LOGGER('INFO', context.__PATH__, `execute:${settings.element}:${settings.library}:end`, context, result);
|
27946
27946
|
return result;
|
27947
27947
|
};
|
27948
27948
|
const executePinsList = async (pinsSettingsList, context, path = 'root')=>{
|