@digipair/skill-canvas 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 CHANGED
@@ -23513,14 +23513,14 @@ function indent(str, spaces) {
23513
23513
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23514
23514
  // match is required
23515
23515
  if (!match) {
23516
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
23516
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23517
23517
  v: nextMatch1
23518
23518
  };
23519
23519
  }
23520
23520
  var token = match.token, offset = match.offset;
23521
23521
  i1 += offset;
23522
23522
  if (token === " ") {
23523
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
23523
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23524
23524
  }
23525
23525
  tokens1 = _to_consumable_array$1(tokens1).concat([
23526
23526
  token
@@ -23539,7 +23539,7 @@ function indent(str, spaces) {
23539
23539
  if (contextKeys.some(function(el) {
23540
23540
  return el.startsWith(name);
23541
23541
  })) {
23542
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
23542
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23543
23543
  }
23544
23544
  if (dateTimeIdentifiers.some(function(el) {
23545
23545
  return el === name;
@@ -23558,9 +23558,9 @@ function indent(str, spaces) {
23558
23558
  if (dateTimeIdentifiers.some(function(el) {
23559
23559
  return el.startsWith(name);
23560
23560
  })) {
23561
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
23561
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23562
23562
  }
23563
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
23563
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23564
23564
  v: nextMatch1
23565
23565
  };
23566
23566
  };
@@ -27392,7 +27392,9 @@ const executePins = async (settingsOrigin, context = {})=>{
27392
27392
  const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
27393
27393
  if (alias) {
27394
27394
  settings = await preparePinsSettings(_extends({}, settings, alias), {
27395
- settings
27395
+ settings: _extends({}, settings, {
27396
+ library: settings.library.substring(alias.name.length + 1)
27397
+ })
27396
27398
  });
27397
27399
  }
27398
27400
  if ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.each) {
package/index.esm.js CHANGED
@@ -27370,7 +27370,9 @@ const executePins = async (settingsOrigin, context = {})=>{
27370
27370
  const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
27371
27371
  if (alias) {
27372
27372
  settings = await preparePinsSettings(_extends({}, settings, alias), {
27373
- settings
27373
+ settings: _extends({}, settings, {
27374
+ library: settings.library.substring(alias.name.length + 1)
27375
+ })
27374
27376
  });
27375
27377
  }
27376
27378
  if ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.each) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-canvas",
3
- "version": "0.33.0",
3
+ "version": "0.33.2",
4
4
  "dependencies": {
5
5
  "canvas": "^2.11.2"
6
6
  },