@digipair/skill-dsp 0.20.1 → 0.21.0

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.esm.js +5 -5
  2. package/package.json +4 -2
package/index.esm.js CHANGED
@@ -23498,14 +23498,14 @@ function indent(str, spaces) {
23498
23498
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23499
23499
  // match is required
23500
23500
  if (!match) {
23501
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23501
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23502
23502
  v: nextMatch1
23503
23503
  };
23504
23504
  }
23505
23505
  var token = match.token, offset = match.offset;
23506
23506
  i1 += offset;
23507
23507
  if (token === " ") {
23508
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23508
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23509
23509
  }
23510
23510
  tokens1 = _to_consumable_array$6(tokens1).concat([
23511
23511
  token
@@ -23524,7 +23524,7 @@ function indent(str, spaces) {
23524
23524
  if (contextKeys.some(function(el) {
23525
23525
  return el.startsWith(name);
23526
23526
  })) {
23527
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23527
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23528
23528
  }
23529
23529
  if (dateTimeIdentifiers.some(function(el) {
23530
23530
  return el === name;
@@ -23543,9 +23543,9 @@ function indent(str, spaces) {
23543
23543
  if (dateTimeIdentifiers.some(function(el) {
23544
23544
  return el.startsWith(name);
23545
23545
  })) {
23546
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23546
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23547
23547
  }
23548
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23548
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23549
23549
  v: nextMatch1
23550
23550
  };
23551
23551
  };
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@digipair/skill-dsp",
3
- "version": "0.20.1",
4
- "dependencies": {},
3
+ "version": "0.21.0",
4
+ "dependencies": {
5
+ "@ax-llm/ax": "^9.0.28"
6
+ },
5
7
  "main": "./index.cjs.js",
6
8
  "module": "./index.esm.js"
7
9
  }