@nwire/hooks 0.10.1 → 0.11.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/dist/registry.js +1 -1
  2. package/package.json +1 -1
package/dist/registry.js CHANGED
@@ -49,7 +49,7 @@ const PLAIN_RE = /\s+at\s+([^()\s]+):(\d+):(\d+)\s*$/;
49
49
  // so package-local tests can assert on captured user-code locations.
50
50
  // `[\\/]` accepts both POSIX `/` and Windows `\` separators because V8
51
51
  // stack frames emit native path syntax per-platform.
52
- const NWIRE_FRAME_RE = /(node_modules[\\/](@nwire[\\/]|\.pnpm[\\/]@nwire\+)|packages[\\/]nwire-[^\\/]+[\\/](src|dist)[\\/](?!__tests__[\\/]))/;
52
+ const NWIRE_FRAME_RE = /(node_modules[\\/](@nwire[\\/]|\.pnpm[\\/]@nwire\+)|packages[\\/](core|nwire|tool)-[^\\/]+[\\/](src|dist)[\\/](?!__tests__[\\/]))/;
53
53
  /**
54
54
  * Walk the V8 stack, skip frames that originate inside `@nwire/*` packages,
55
55
  * return the first user-code frame. `skipFrames` lets call sites that are
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nwire/hooks",
3
- "version": "0.10.1",
3
+ "version": "0.11.0",
4
4
  "description": "Nwire — the universal dispatch primitive. One hook() accepts both .use() (sequential koa-compose chain) and .on() (parallel listener) attachments. Lazy-memoized chain compose, per-step observation tap, AsyncLocalStorage-linked run topology. In-process only.",
5
5
  "keywords": [
6
6
  "dispatch",