@techninja/clearstack 0.4.14 → 0.4.15

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.
@@ -33,7 +33,11 @@ export function runKeys(specRows, keys, ctx) {
33
33
  row.detail = '';
34
34
  render(rows, lastCheck.value, watchDirs, currentViolations.value);
35
35
  const t0 = Date.now();
36
- const raw = await row.run({ quiet: true });
36
+ const onProgress = (line) => {
37
+ row.detail = line.slice(0, 60);
38
+ render(rows, lastCheck.value, watchDirs, currentViolations.value);
39
+ };
40
+ const raw = await row.run({ quiet: true, onProgress });
37
41
  const elapsed = ((Date.now() - t0) / 1000).toFixed(1) + 's';
38
42
  row.result = typeof raw === 'boolean' ? { pass: raw } : raw;
39
43
  row.pass = row.result.pass;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@techninja/clearstack",
3
- "version": "0.4.14",
3
+ "version": "0.4.15",
4
4
  "type": "module",
5
5
  "description": "A no-build web component framework specification — scaffold, validate, and evolve spec-compliant projects",
6
6
  "bin": {