@digipair/skill-smoobu 0.33.0 → 0.33.1
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 +8 -6
- package/index.esm.js +3 -1
- 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 i = i1, nextMatch = nextMatch1, 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 i = i1, nextMatch = nextMatch1, 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 i = i1, nextMatch = nextMatch1, 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 i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23560
23560
|
}
|
|
23561
|
-
return
|
|
23561
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23562
23562
|
v: nextMatch1
|
|
23563
23563
|
};
|
|
23564
23564
|
};
|
|
@@ -27390,7 +27390,9 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27390
27390
|
const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
|
|
27391
27391
|
if (alias) {
|
|
27392
27392
|
settings = await preparePinsSettings(_extends({}, settings, alias), {
|
|
27393
|
-
settings
|
|
27393
|
+
settings: _extends({}, settings, {
|
|
27394
|
+
library: settings.library.substring(alias.name.length + 1)
|
|
27395
|
+
})
|
|
27394
27396
|
});
|
|
27395
27397
|
}
|
|
27396
27398
|
if ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.each) {
|
package/index.esm.js
CHANGED
|
@@ -27368,7 +27368,9 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27368
27368
|
const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
|
|
27369
27369
|
if (alias) {
|
|
27370
27370
|
settings = await preparePinsSettings(_extends({}, settings, alias), {
|
|
27371
|
-
settings
|
|
27371
|
+
settings: _extends({}, settings, {
|
|
27372
|
+
library: settings.library.substring(alias.name.length + 1)
|
|
27373
|
+
})
|
|
27372
27374
|
});
|
|
27373
27375
|
}
|
|
27374
27376
|
if ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.each) {
|