@digipair/skill-dsp 0.31.0 → 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
|
@@ -23525,14 +23525,14 @@ function indent(str, spaces) {
|
|
|
23525
23525
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23526
23526
|
// match is required
|
|
23527
23527
|
if (!match) {
|
|
23528
|
-
return i = i1,
|
|
23528
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23529
23529
|
v: nextMatch1
|
|
23530
23530
|
};
|
|
23531
23531
|
}
|
|
23532
23532
|
var token = match.token, offset = match.offset;
|
|
23533
23533
|
i1 += offset;
|
|
23534
23534
|
if (token === " ") {
|
|
23535
|
-
return i = i1,
|
|
23535
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23536
23536
|
}
|
|
23537
23537
|
tokens1 = _to_consumable_array$6(tokens1).concat([
|
|
23538
23538
|
token
|
|
@@ -23551,7 +23551,7 @@ function indent(str, spaces) {
|
|
|
23551
23551
|
if (contextKeys.some(function(el) {
|
|
23552
23552
|
return el.startsWith(name);
|
|
23553
23553
|
})) {
|
|
23554
|
-
return i = i1,
|
|
23554
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23555
23555
|
}
|
|
23556
23556
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23557
23557
|
return el === name;
|
|
@@ -23570,9 +23570,9 @@ function indent(str, spaces) {
|
|
|
23570
23570
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23571
23571
|
return el.startsWith(name);
|
|
23572
23572
|
})) {
|
|
23573
|
-
return i = i1,
|
|
23573
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23574
23574
|
}
|
|
23575
|
-
return i = i1,
|
|
23575
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23576
23576
|
v: nextMatch1
|
|
23577
23577
|
};
|
|
23578
23578
|
};
|
|
@@ -27448,17 +27448,14 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27448
27448
|
};
|
|
27449
27449
|
const executePinsList = async (pinsSettingsList, context)=>{
|
|
27450
27450
|
let previous = {};
|
|
27451
|
-
const steps = [];
|
|
27452
27451
|
// parcourir tous les pins
|
|
27453
27452
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
|
27454
27453
|
const settings = pinsSettingsList[i];
|
|
27455
27454
|
try {
|
|
27456
27455
|
previous = await executePins(settings, _extends({}, context, {
|
|
27457
27456
|
previous,
|
|
27458
|
-
steps,
|
|
27459
27457
|
parent: {
|
|
27460
27458
|
previous: context.previous,
|
|
27461
|
-
steps: context.steps,
|
|
27462
27459
|
parent: context.parent
|
|
27463
27460
|
}
|
|
27464
27461
|
}));
|
|
@@ -27468,10 +27465,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
|
|
|
27468
27465
|
}
|
|
27469
27466
|
throw error;
|
|
27470
27467
|
}
|
|
27471
|
-
steps[i] = {
|
|
27472
|
-
name: settings.name,
|
|
27473
|
-
result: previous
|
|
27474
|
-
};
|
|
27475
27468
|
}
|
|
27476
27469
|
return previous;
|
|
27477
27470
|
};
|
package/index.esm.js
CHANGED
|
@@ -23499,14 +23499,14 @@ function indent(str, spaces) {
|
|
|
23499
23499
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23500
23500
|
// match is required
|
|
23501
23501
|
if (!match) {
|
|
23502
|
-
return
|
|
23502
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23503
23503
|
v: nextMatch1
|
|
23504
23504
|
};
|
|
23505
23505
|
}
|
|
23506
23506
|
var token = match.token, offset = match.offset;
|
|
23507
23507
|
i1 += offset;
|
|
23508
23508
|
if (token === " ") {
|
|
23509
|
-
return
|
|
23509
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23510
23510
|
}
|
|
23511
23511
|
tokens1 = _to_consumable_array$6(tokens1).concat([
|
|
23512
23512
|
token
|
|
@@ -23525,7 +23525,7 @@ function indent(str, spaces) {
|
|
|
23525
23525
|
if (contextKeys.some(function(el) {
|
|
23526
23526
|
return el.startsWith(name);
|
|
23527
23527
|
})) {
|
|
23528
|
-
return
|
|
23528
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23529
23529
|
}
|
|
23530
23530
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23531
23531
|
return el === name;
|
|
@@ -23544,9 +23544,9 @@ function indent(str, spaces) {
|
|
|
23544
23544
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23545
23545
|
return el.startsWith(name);
|
|
23546
23546
|
})) {
|
|
23547
|
-
return
|
|
23547
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23548
23548
|
}
|
|
23549
|
-
return
|
|
23549
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23550
23550
|
v: nextMatch1
|
|
23551
23551
|
};
|
|
23552
23552
|
};
|
|
@@ -27422,17 +27422,14 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27422
27422
|
};
|
|
27423
27423
|
const executePinsList = async (pinsSettingsList, context)=>{
|
|
27424
27424
|
let previous = {};
|
|
27425
|
-
const steps = [];
|
|
27426
27425
|
// parcourir tous les pins
|
|
27427
27426
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
|
27428
27427
|
const settings = pinsSettingsList[i];
|
|
27429
27428
|
try {
|
|
27430
27429
|
previous = await executePins(settings, _extends({}, context, {
|
|
27431
27430
|
previous,
|
|
27432
|
-
steps,
|
|
27433
27431
|
parent: {
|
|
27434
27432
|
previous: context.previous,
|
|
27435
|
-
steps: context.steps,
|
|
27436
27433
|
parent: context.parent
|
|
27437
27434
|
}
|
|
27438
27435
|
}));
|
|
@@ -27442,10 +27439,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
|
|
|
27442
27439
|
}
|
|
27443
27440
|
throw error;
|
|
27444
27441
|
}
|
|
27445
|
-
steps[i] = {
|
|
27446
|
-
name: settings.name,
|
|
27447
|
-
result: previous
|
|
27448
|
-
};
|
|
27449
27442
|
}
|
|
27450
27443
|
return previous;
|
|
27451
27444
|
};
|