@nwire/messages 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.
- package/dist/source-location.js +1 -1
- package/package.json +1 -1
package/dist/source-location.js
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
// V8 stack frames emit native separators per-platform, so the regex must
|
|
14
14
|
// accept both. Without this, every Win stack frame slipped past the filter
|
|
15
15
|
// and Studio's "open in IDE" link pointed at framework source.
|
|
16
|
-
const NWIRE_FRAME_RE = /(node_modules[\\/](@nwire[\\/]|\.pnpm[\\/]@nwire\+)|packages[\\/]nwire-)/;
|
|
16
|
+
const NWIRE_FRAME_RE = /(node_modules[\\/](@nwire[\\/]|\.pnpm[\\/]@nwire\+)|packages[\\/](core|nwire|tool)-[^\\/]+[\\/](src|dist)[\\/](?!__tests__[\\/]))/;
|
|
17
17
|
const PAREN_RE = /\(([^()]+):(\d+):(\d+)\)\s*$/; // at someFn (/path:42:17)
|
|
18
18
|
const PLAIN_RE = /\s+at\s+([^()\s]+):(\d+):(\d+)\s*$/; // at /path:42:17 (anon)
|
|
19
19
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nwire/messages",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Nwire — typed command and event contracts. defineCommand, defineEvent with public/internal visibility. Zod-validated; shareable across the backend, frontends, BFFs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"commands",
|