@digipair/skill-dsp 0.20.0 → 0.20.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.
Files changed (2) hide show
  1. package/index.cjs.js +5 -5
  2. package/package.json +4 -2
package/index.cjs.js CHANGED
@@ -23524,14 +23524,14 @@ function indent(str, spaces) {
23524
23524
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23525
23525
  // match is required
23526
23526
  if (!match) {
23527
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23527
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
23528
23528
  v: nextMatch1
23529
23529
  };
23530
23530
  }
23531
23531
  var token = match.token, offset = match.offset;
23532
23532
  i1 += offset;
23533
23533
  if (token === " ") {
23534
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23534
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23535
23535
  }
23536
23536
  tokens1 = _to_consumable_array$6(tokens1).concat([
23537
23537
  token
@@ -23550,7 +23550,7 @@ function indent(str, spaces) {
23550
23550
  if (contextKeys.some(function(el) {
23551
23551
  return el.startsWith(name);
23552
23552
  })) {
23553
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23553
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23554
23554
  }
23555
23555
  if (dateTimeIdentifiers.some(function(el) {
23556
23556
  return el === name;
@@ -23569,9 +23569,9 @@ function indent(str, spaces) {
23569
23569
  if (dateTimeIdentifiers.some(function(el) {
23570
23570
  return el.startsWith(name);
23571
23571
  })) {
23572
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23572
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23573
23573
  }
23574
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23574
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
23575
23575
  v: nextMatch1
23576
23576
  };
23577
23577
  };
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@digipair/skill-dsp",
3
- "version": "0.20.0",
4
- "dependencies": {},
3
+ "version": "0.20.2",
4
+ "dependencies": {
5
+ "@ax-llm/ax": "^9.0.28"
6
+ },
5
7
  "main": "./index.cjs.js",
6
8
  "module": "./index.esm.js"
7
9
  }