@tracelane/core 0.1.0-alpha.6 → 0.1.0-alpha.8
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/README.md +3 -3
- package/package.json +15 -2
package/README.md
CHANGED
|
@@ -16,10 +16,10 @@ See the [`@tracelane/wdio` README](https://github.com/Cubenest/rrweb-stack/tree/
|
|
|
16
16
|
|
|
17
17
|
## What's in here
|
|
18
18
|
|
|
19
|
-
- `BrowserExecutor` — the framework-agnostic surface that adapters implement
|
|
20
|
-
- Recorder controller — in-page buffer install + Node-polled drain
|
|
19
|
+
- `BrowserExecutor` — the framework-agnostic surface that adapters implement.
|
|
20
|
+
- Recorder controller — in-page buffer install + Node-polled drain.
|
|
21
21
|
- Navigation re-injection with a 250ms cooldown + `tracelane.nav` boundary events.
|
|
22
|
-
- Mode switch (`'failed' | 'all'`) and a 25 MB FullSnapshot-preserving report-size guard
|
|
22
|
+
- Mode switch (`'failed' | 'all'`) and a 25 MB FullSnapshot-preserving report-size guard.
|
|
23
23
|
|
|
24
24
|
Built on [`@cubenest/rrweb-core`](https://github.com/Cubenest/rrweb-stack/tree/main/packages/rrweb-core).
|
|
25
25
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tracelane/core",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.8",
|
|
4
4
|
"description": "Framework-agnostic rrweb recording engine for tracelane. Wraps a per-framework browser object behind a common BrowserExecutor interface.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tracelane",
|
|
7
|
+
"testing",
|
|
8
|
+
"rrweb",
|
|
9
|
+
"session-replay",
|
|
10
|
+
"browser-automation",
|
|
11
|
+
"e2e",
|
|
12
|
+
"capture-engine"
|
|
13
|
+
],
|
|
5
14
|
"license": "Apache-2.0",
|
|
15
|
+
"funding": {
|
|
16
|
+
"type": "github",
|
|
17
|
+
"url": "https://github.com/sponsors/harry-harish"
|
|
18
|
+
},
|
|
6
19
|
"type": "module",
|
|
7
20
|
"main": "./dist/index.js",
|
|
8
21
|
"types": "./dist/index.d.ts",
|
|
@@ -18,7 +31,7 @@
|
|
|
18
31
|
"README.md"
|
|
19
32
|
],
|
|
20
33
|
"dependencies": {
|
|
21
|
-
"@cubenest/rrweb-core": "0.1.0-alpha.
|
|
34
|
+
"@cubenest/rrweb-core": "0.1.0-alpha.4"
|
|
22
35
|
},
|
|
23
36
|
"devDependencies": {
|
|
24
37
|
"jsdom": "^25.0.1"
|