@swmansion/argent 0.25.1-next.3 → 0.25.1-next.4
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/cli-cmds.mjs
CHANGED
|
@@ -21857,7 +21857,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
21857
21857
|
var SESSION_ID2 = randomUUID5();
|
|
21858
21858
|
function readCliVersion() {
|
|
21859
21859
|
if (true) {
|
|
21860
|
-
return "0.25.1-next.
|
|
21860
|
+
return "0.25.1-next.4";
|
|
21861
21861
|
}
|
|
21862
21862
|
return "0.0.0";
|
|
21863
21863
|
}
|
package/dist/installer.mjs
CHANGED
|
@@ -16710,7 +16710,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
16710
16710
|
var SESSION_ID = randomUUID4();
|
|
16711
16711
|
function readCliVersion() {
|
|
16712
16712
|
if (true) {
|
|
16713
|
-
return "0.25.1-next.
|
|
16713
|
+
return "0.25.1-next.4";
|
|
16714
16714
|
}
|
|
16715
16715
|
return "0.0.0";
|
|
16716
16716
|
}
|
package/dist/tool-server.cjs
CHANGED
|
@@ -94702,7 +94702,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
94702
94702
|
var SESSION_ID = (0, import_node_crypto3.randomUUID)();
|
|
94703
94703
|
function readCliVersion() {
|
|
94704
94704
|
if (true) {
|
|
94705
|
-
return "0.25.1-next.
|
|
94705
|
+
return "0.25.1-next.4";
|
|
94706
94706
|
}
|
|
94707
94707
|
return "0.0.0";
|
|
94708
94708
|
}
|
package/package.json
CHANGED
|
@@ -101,7 +101,7 @@ One entry per line — fields (whitespace-separated, `|` delimiter before messag
|
|
|
101
101
|
|
|
102
102
|
| Field | Example | Notes |
|
|
103
103
|
| ------------- | --------------------------- | --------------------------------------------------- |
|
|
104
|
-
| `[L:<id>]` | `[L:42]` | Unique
|
|
104
|
+
| `[L:<id>]` | `[L:42]` | Unique anchor; search it literally (see below) |
|
|
105
105
|
| `<timestamp>` | `2026-03-17T14:30:00.000Z` | ISO 8601 |
|
|
106
106
|
| `<LEVEL>` | `ERROR`, `WARN `, `LOG ` | Uppercase, padded to 5 chars |
|
|
107
107
|
| `<source>` | `src/api/user.ts:42` or `-` | Relative path from source map; `-` if unavailable |
|
|
@@ -117,6 +117,7 @@ When reading from the log file:
|
|
|
117
117
|
- Default to `-m 50` unless you need more.
|
|
118
118
|
- Use `tail -N` recent entries.
|
|
119
119
|
- `clusters[].message` gives you the exact text which you may look for
|
|
120
|
+
- Search bracketed text such as `[L:42]` or `[object Object]` with `grep -F`, or escape the brackets (`\[L:42\]`). Unescaped, `[...]` is a character class: `grep '[L:42]'` matches every line in the file.
|
|
120
121
|
|
|
121
122
|
> **If the file is too large** Delegate to an `Explore` subagent with the file path, the format spec above, the specific patterns you need, and Golden Rule 4's untrusted-data caveat.
|
|
122
123
|
|