@digipair/engine 0.30.1 → 0.31.2
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 +5 -12
- package/index.esm.js +5 -12
- package/package.json +1 -1
package/index.cjs.js
CHANGED
@@ -23511,14 +23511,14 @@ function indent(str, spaces) {
|
|
23511
23511
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
23512
23512
|
// match is required
|
23513
23513
|
if (!match) {
|
23514
|
-
return
|
23514
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
23515
23515
|
v: nextMatch1
|
23516
23516
|
};
|
23517
23517
|
}
|
23518
23518
|
var token = match.token, offset = match.offset;
|
23519
23519
|
i1 += offset;
|
23520
23520
|
if (token === " ") {
|
23521
|
-
return
|
23521
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
23522
23522
|
}
|
23523
23523
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
23524
23524
|
token
|
@@ -23537,7 +23537,7 @@ function indent(str, spaces) {
|
|
23537
23537
|
if (contextKeys.some(function(el) {
|
23538
23538
|
return el.startsWith(name);
|
23539
23539
|
})) {
|
23540
|
-
return
|
23540
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
23541
23541
|
}
|
23542
23542
|
if (dateTimeIdentifiers.some(function(el) {
|
23543
23543
|
return el === name;
|
@@ -23556,9 +23556,9 @@ function indent(str, spaces) {
|
|
23556
23556
|
if (dateTimeIdentifiers.some(function(el) {
|
23557
23557
|
return el.startsWith(name);
|
23558
23558
|
})) {
|
23559
|
-
return
|
23559
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
23560
23560
|
}
|
23561
|
-
return
|
23561
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
23562
23562
|
v: nextMatch1
|
23563
23563
|
};
|
23564
23564
|
};
|
@@ -27439,17 +27439,14 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
27439
27439
|
};
|
27440
27440
|
const executePinsList = async (pinsSettingsList, context)=>{
|
27441
27441
|
let previous = {};
|
27442
|
-
const steps = [];
|
27443
27442
|
// parcourir tous les pins
|
27444
27443
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
27445
27444
|
const settings = pinsSettingsList[i];
|
27446
27445
|
try {
|
27447
27446
|
previous = await executePins(settings, _extends({}, context, {
|
27448
27447
|
previous,
|
27449
|
-
steps,
|
27450
27448
|
parent: {
|
27451
27449
|
previous: context.previous,
|
27452
|
-
steps: context.steps,
|
27453
27450
|
parent: context.parent
|
27454
27451
|
}
|
27455
27452
|
}));
|
@@ -27459,10 +27456,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
|
|
27459
27456
|
}
|
27460
27457
|
throw error;
|
27461
27458
|
}
|
27462
|
-
steps[i] = {
|
27463
|
-
name: settings.name,
|
27464
|
-
result: previous
|
27465
|
-
};
|
27466
27459
|
}
|
27467
27460
|
return previous;
|
27468
27461
|
};
|
package/index.esm.js
CHANGED
@@ -23489,14 +23489,14 @@ function indent(str, spaces) {
|
|
23489
23489
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
23490
23490
|
// match is required
|
23491
23491
|
if (!match) {
|
23492
|
-
return
|
23492
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
23493
23493
|
v: nextMatch1
|
23494
23494
|
};
|
23495
23495
|
}
|
23496
23496
|
var token = match.token, offset = match.offset;
|
23497
23497
|
i1 += offset;
|
23498
23498
|
if (token === " ") {
|
23499
|
-
return
|
23499
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23500
23500
|
}
|
23501
23501
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
23502
23502
|
token
|
@@ -23515,7 +23515,7 @@ function indent(str, spaces) {
|
|
23515
23515
|
if (contextKeys.some(function(el) {
|
23516
23516
|
return el.startsWith(name);
|
23517
23517
|
})) {
|
23518
|
-
return
|
23518
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23519
23519
|
}
|
23520
23520
|
if (dateTimeIdentifiers.some(function(el) {
|
23521
23521
|
return el === name;
|
@@ -23534,9 +23534,9 @@ function indent(str, spaces) {
|
|
23534
23534
|
if (dateTimeIdentifiers.some(function(el) {
|
23535
23535
|
return el.startsWith(name);
|
23536
23536
|
})) {
|
23537
|
-
return
|
23537
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23538
23538
|
}
|
23539
|
-
return
|
23539
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
23540
23540
|
v: nextMatch1
|
23541
23541
|
};
|
23542
23542
|
};
|
@@ -27417,17 +27417,14 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
27417
27417
|
};
|
27418
27418
|
const executePinsList = async (pinsSettingsList, context)=>{
|
27419
27419
|
let previous = {};
|
27420
|
-
const steps = [];
|
27421
27420
|
// parcourir tous les pins
|
27422
27421
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
27423
27422
|
const settings = pinsSettingsList[i];
|
27424
27423
|
try {
|
27425
27424
|
previous = await executePins(settings, _extends({}, context, {
|
27426
27425
|
previous,
|
27427
|
-
steps,
|
27428
27426
|
parent: {
|
27429
27427
|
previous: context.previous,
|
27430
|
-
steps: context.steps,
|
27431
27428
|
parent: context.parent
|
27432
27429
|
}
|
27433
27430
|
}));
|
@@ -27437,10 +27434,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
|
|
27437
27434
|
}
|
27438
27435
|
throw error;
|
27439
27436
|
}
|
27440
|
-
steps[i] = {
|
27441
|
-
name: settings.name,
|
27442
|
-
result: previous
|
27443
|
-
};
|
27444
27437
|
}
|
27445
27438
|
return previous;
|
27446
27439
|
};
|