@digipair/engine 0.33.0 → 0.33.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 +3 -1
- package/index.esm.js +8 -6
- package/package.json +1 -1
package/index.cjs.js
CHANGED
@@ -27395,7 +27395,9 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
27395
27395
|
const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
|
27396
27396
|
if (alias) {
|
27397
27397
|
settings = await preparePinsSettings(_extends({}, settings, alias), {
|
27398
|
-
settings
|
27398
|
+
settings: _extends({}, settings, {
|
27399
|
+
library: settings.library.substring(alias.name.length + 1)
|
27400
|
+
})
|
27399
27401
|
});
|
27400
27402
|
}
|
27401
27403
|
if ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.each) {
|
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, nextMatch = nextMatch1, tokens = tokens1, {
|
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, nextMatch = nextMatch1, tokens = tokens1, "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, nextMatch = nextMatch1, tokens = tokens1, "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, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
23538
23538
|
}
|
23539
|
-
return
|
23539
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
23540
23540
|
v: nextMatch1
|
23541
23541
|
};
|
23542
23542
|
};
|
@@ -27373,7 +27373,9 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
27373
27373
|
const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
|
27374
27374
|
if (alias) {
|
27375
27375
|
settings = await preparePinsSettings(_extends({}, settings, alias), {
|
27376
|
-
settings
|
27376
|
+
settings: _extends({}, settings, {
|
27377
|
+
library: settings.library.substring(alias.name.length + 1)
|
27378
|
+
})
|
27377
27379
|
});
|
27378
27380
|
}
|
27379
27381
|
if ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.each) {
|