Skip to content

Commit f3c5f9f

Browse files
github-actions[bot]Juice10
authored andcommitted
Version Packages (alpha) (rrweb-io#1484)
* Version Packages (alpha) * Tweak description of file path changes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Justin Halsall <[email protected]>
1 parent 2bd51a3 commit f3c5f9f

File tree

38 files changed

+346
-59
lines changed

38 files changed

+346
-59
lines changed

.changeset/pre.json

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,17 @@
99
"rrweb-snapshot": "2.0.0-alpha.4",
1010
"@rrweb/types": "2.0.0-alpha.4",
1111
"@rrweb/web-extension": "2.0.0-alpha.4",
12-
"rrvideo": "2.0.0-alpha.6"
12+
"rrvideo": "2.0.0-alpha.6",
13+
"@rrweb/all": "2.0.0-alpha.14",
14+
"@rrweb/packer": "2.0.0-alpha.14",
15+
"@rrweb/rrweb-plugin-canvas-webrtc-record": "2.0.0-alpha.14",
16+
"@rrweb/rrweb-plugin-canvas-webrtc-replay": "2.0.0-alpha.14",
17+
"@rrweb/rrweb-plugin-console-record": "2.0.0-alpha.14",
18+
"@rrweb/rrweb-plugin-console-replay": "2.0.0-alpha.14",
19+
"@rrweb/rrweb-plugin-sequential-id-record": "2.0.0-alpha.14",
20+
"@rrweb/rrweb-plugin-sequential-id-replay": "2.0.0-alpha.14",
21+
"@rrweb/record": "2.0.0-alpha.14",
22+
"@rrweb/replay": "2.0.0-alpha.14"
1323
},
1424
"changesets": [
1525
"attribute-text-reductions",
@@ -31,7 +41,9 @@
3141
"date-now-guard",
3242
"dirty-rules-dress",
3343
"eight-terms-hunt",
44+
"eighty-teachers-smash",
3445
"eleven-bobcats-peel",
46+
"eleven-toys-vanish",
3547
"empty-bikes-cheer",
3648
"event-single-wrap",
3749
"fair-dragons-greet",
@@ -52,8 +64,10 @@
5264
"grumpy-ways-own",
5365
"hip-worms-relax",
5466
"hungry-dodos-taste",
67+
"inlineImage-maybeNot-crossOrigin",
5568
"itchy-dryers-double",
5669
"khaki-dots-bathe",
70+
"kind-kids-design",
5771
"large-ants-prove",
5872
"lazy-squids-draw",
5973
"lazy-toes-confess",
@@ -62,6 +76,7 @@
6276
"little-radios-thank",
6377
"little-suits-leave",
6478
"loud-seals-raise",
79+
"lovely-files-sparkle",
6580
"lovely-pears-cross",
6681
"lovely-students-boil",
6782
"mean-tips-impress",
@@ -70,18 +85,24 @@
7085
"mighty-frogs-sparkle",
7186
"modern-doors-watch",
7287
"moody-dots-refuse",
88+
"nasty-scissors-reply",
7389
"nervous-buses-pump",
7490
"nervous-kiwis-nail",
7591
"nervous-mirrors-perform",
7692
"nervous-poets-grin",
7793
"nervous-tables-travel",
7894
"new-snakes-call",
7995
"nice-pugs-reply",
96+
"no-neg-lookbehind",
8097
"old-dryers-hide",
98+
"perfect-bulldogs-punch",
8199
"polite-olives-wave",
100+
"pretty-meals-flash",
82101
"pretty-plums-rescue",
83102
"pretty-schools-remember",
103+
"proud-clocks-hope",
84104
"proud-experts-jam",
105+
"purple-carrots-film",
85106
"rare-adults-sneeze",
86107
"real-masks-explode",
87108
"real-trains-switch",
@@ -90,9 +111,14 @@
90111
"rich-jars-remember",
91112
"rotten-spies-enjoy",
92113
"serious-ants-juggle",
114+
"serious-eggs-greet",
115+
"shadow-dom-unbusify",
116+
"silent-plants-perform",
93117
"silver-pots-sit",
94118
"silver-windows-float",
95119
"sixty-impalas-laugh",
120+
"slimy-eagles-grow",
121+
"small-hats-kneel",
96122
"small-olives-arrive",
97123
"smart-ears-refuse",
98124
"smart-geckos-cover",
@@ -110,6 +136,7 @@
110136
"tiny-buckets-love",
111137
"tiny-candles-whisper",
112138
"tiny-chairs-build",
139+
"title-deanimate-option",
113140
"tricky-panthers-guess",
114141
"twenty-goats-kneel",
115142
"twenty-lies-switch",

.changeset/pretty-meals-flash.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"@rrweb/types": major
1818
---
1919

20-
Important: If you don't reference distributed files directly, for example you run `import rrweb from 'rrweb'` you won't notice a difference. If you include rrweb in a script tag and referred to a `.js` file, you'll now have to update that path to include a `.umd.cjs` file. Distributed files have new paths, filenames and extensions. All packages now no longer include a `.js` files, instead they include `.cjs`, `.umd.cjs` and `.mjs` files. The `.umd.cjs` files are CommonJS modules that bundle all files together to make it easy to ship one file to browser environments. The `.mjs` files are ES modules that can be used in modern browsers, node.js and bundlers that support ES modules. The `.cjs` files are CommonJS modules that can be used in older Node.js environments.
20+
Distributed files have new filenames, paths and extensions. **Important: If you reference distributed files or types directly, you might have to update your paths/filenames. E.g. you import from `rrweb/typings/...` or `rrdom/es`. However you run `import rrweb from 'rrweb'` you won't notice a difference with this change.** If you include rrweb files directly in a script tag, you might have to update that path to include a the `.umd.cjs` files instead. All `.js` files now use ES modules which can be used in modern browsers, node.js and bundlers that support ES modules. All npm packages now also ship `.cjs` and `.umd.cjs` files. The `.umd.cjs` files are CommonJS modules that bundle all files together to make it easy to ship one file to browser environments (similar to the previous `.js` files). The `.cjs` files are CommonJS modules that can be used in older Node.js environments. Types should be better defined in `package.json` and if you need specific types they might be exported from new packages (for example `PlayerMachineState` and `SpeedMachineState` are now exported from `@rrweb/replay`). Check the `package.json`'s `main` and `exports` field for the available files.

packages/all/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# @rrweb/all
2+
3+
## 2.0.0-alpha.15
4+
5+
### Major Changes
6+
7+
- [#1497](https://github.com/rrweb-io/rrweb/pull/1497) [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf) Thanks [@Juice10](https://github.com/Juice10)! - Distributed files have new filenames, paths and extensions. **Important: If you reference distributed files or types directly, you might have to update your paths/filenames. E.g. you import from `rrweb/typings/...` or `rrdom/es`. However you run `import rrweb from 'rrweb'` you won't notice a difference with this change.** If you include rrweb files directly in a script tag, you might have to update that path to include a the `.umd.cjs` files instead. All `.js` files now use ES modules which can be used in modern browsers, node.js and bundlers that support ES modules. All npm packages now also ship `.cjs` and `.umd.cjs` files. The `.umd.cjs` files are CommonJS modules that bundle all files together to make it easy to ship one file to browser environments (similar to the previous `.js` files). The `.cjs` files are CommonJS modules that can be used in older Node.js environments. Types should be better defined in `package.json` and if you need specific types they might be exported from new packages (for example `PlayerMachineState` and `SpeedMachineState` are now exported from `@rrweb/replay`). Check the `package.json`'s `main` and `exports` field for the available files.
8+
9+
- [#1497](https://github.com/rrweb-io/rrweb/pull/1497) [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf) Thanks [@Juice10](https://github.com/Juice10)! - Remove the rrweb-all.js, rrweb-record.js, and rrweb-replay.js files from `rrweb` package. Now you can use `@rrweb/all`, `@rrweb/record`, and `@rrweb/replay` packages instead. Check out the README of each package for more information or check out [PR #1033](https://github.com/rrweb-io/rrweb/pull/1033) to see the changes.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`7261c43`](https://github.com/rrweb-io/rrweb/commit/7261c43f60973e88325edf832e4d0e057fbff0ae), [`4014305`](https://github.com/rrweb-io/rrweb/commit/40143059446cee5c042c007b1c2e976f36e172f5), [`609b7fa`](https://github.com/rrweb-io/rrweb/commit/609b7fac79a552f746dc880a28927dee382cd082), [`82f6fec`](https://github.com/rrweb-io/rrweb/commit/82f6fecf36413ecbc994a510144487f1de20d1d5), [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf), [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf), [`5c27b76`](https://github.com/rrweb-io/rrweb/commit/5c27b763192bda9dd91806f95df7c1cd0ab083a6), [`d38893f`](https://github.com/rrweb-io/rrweb/commit/d38893f6338facf331fd1f6e63c121120b81177d), [`d7cf8dd`](https://github.com/rrweb-io/rrweb/commit/d7cf8dd07547f6fb22ef82e341a88357c4053bd3), [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf), [`e08706a`](https://github.com/rrweb-io/rrweb/commit/e08706ae60268b6eb05c6292ef948c71bd423ce3)]:
14+
15+
- @rrweb/packer@2.0.0-alpha.15
16+
- @rrweb/types@2.0.0-alpha.15

packages/all/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rrweb/all",
3-
"version": "2.0.0-alpha.14",
3+
"version": "2.0.0-alpha.15",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -56,9 +56,9 @@
5656
"typescript": "^4.7.3"
5757
},
5858
"dependencies": {
59-
"@rrweb/types": "^2.0.0-alpha.14",
60-
"@rrweb/packer": "^2.0.0-alpha.14",
61-
"rrweb": "^2.0.0-alpha.14"
59+
"@rrweb/types": "^2.0.0-alpha.15",
60+
"@rrweb/packer": "^2.0.0-alpha.15",
61+
"rrweb": "^2.0.0-alpha.15"
6262
},
6363
"browserslist": [
6464
"supports es6-class"

packages/packer/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# @rrweb/packer
2+
3+
## 2.0.0-alpha.15
4+
5+
### Major Changes
6+
7+
- [#1497](https://github.com/rrweb-io/rrweb/pull/1497) [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf) Thanks [@Juice10](https://github.com/Juice10)! - Split plugins out of rrweb and move them into their own packages: @rrweb/packer, @rrweb/rrweb-plugin-canvas-webrtc-record, @rrweb/rrweb-plugin-canvas-webrtc-replay, @rrweb/rrweb-plugin-sequential-id-record, @rrweb/rrweb-plugin-sequential-id-replay, @rrweb/rrweb-plugin-console-record, @rrweb/rrweb-plugin-console-replay. Check out the README of each package for more information or check out https://github.com/rrweb-io/rrweb/pull/1033 to see the changes.
8+
9+
- [#1497](https://github.com/rrweb-io/rrweb/pull/1497) [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf) Thanks [@Juice10](https://github.com/Juice10)! - Distributed files have new filenames, paths and extensions. **Important: If you reference distributed files or types directly, you might have to update your paths/filenames. E.g. you import from `rrweb/typings/...` or `rrdom/es`. However you run `import rrweb from 'rrweb'` you won't notice a difference with this change.** If you include rrweb files directly in a script tag, you might have to update that path to include a the `.umd.cjs` files instead. All `.js` files now use ES modules which can be used in modern browsers, node.js and bundlers that support ES modules. All npm packages now also ship `.cjs` and `.umd.cjs` files. The `.umd.cjs` files are CommonJS modules that bundle all files together to make it easy to ship one file to browser environments (similar to the previous `.js` files). The `.cjs` files are CommonJS modules that can be used in older Node.js environments. Types should be better defined in `package.json` and if you need specific types they might be exported from new packages (for example `PlayerMachineState` and `SpeedMachineState` are now exported from `@rrweb/replay`). Check the `package.json`'s `main` and `exports` field for the available files.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf)]:
14+
- @rrweb/types@2.0.0-alpha.15

packages/packer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rrweb/packer",
3-
"version": "2.0.0-alpha.14",
3+
"version": "2.0.0-alpha.15",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -78,7 +78,7 @@
7878
},
7979
"dependencies": {
8080
"fflate": "^0.4.4",
81-
"@rrweb/types": "^2.0.0-alpha.14"
81+
"@rrweb/types": "^2.0.0-alpha.15"
8282
},
8383
"browserslist": [
8484
"supports es6-class"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# @rrweb/rrweb-plugin-canvas-webrtc-record
2+
3+
## 2.0.0-alpha.15
4+
5+
### Major Changes
6+
7+
- [#1497](https://github.com/rrweb-io/rrweb/pull/1497) [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf) Thanks [@Juice10](https://github.com/Juice10)! - Split plugins out of rrweb and move them into their own packages: @rrweb/packer, @rrweb/rrweb-plugin-canvas-webrtc-record, @rrweb/rrweb-plugin-canvas-webrtc-replay, @rrweb/rrweb-plugin-sequential-id-record, @rrweb/rrweb-plugin-sequential-id-replay, @rrweb/rrweb-plugin-console-record, @rrweb/rrweb-plugin-console-replay. Check out the README of each package for more information or check out https://github.com/rrweb-io/rrweb/pull/1033 to see the changes.
8+
9+
- [#1497](https://github.com/rrweb-io/rrweb/pull/1497) [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf) Thanks [@Juice10](https://github.com/Juice10)! - Distributed files have new filenames, paths and extensions. **Important: If you reference distributed files or types directly, you might have to update your paths/filenames. E.g. you import from `rrweb/typings/...` or `rrdom/es`. However you run `import rrweb from 'rrweb'` you won't notice a difference with this change.** If you include rrweb files directly in a script tag, you might have to update that path to include a the `.umd.cjs` files instead. All `.js` files now use ES modules which can be used in modern browsers, node.js and bundlers that support ES modules. All npm packages now also ship `.cjs` and `.umd.cjs` files. The `.umd.cjs` files are CommonJS modules that bundle all files together to make it easy to ship one file to browser environments (similar to the previous `.js` files). The `.cjs` files are CommonJS modules that can be used in older Node.js environments. Types should be better defined in `package.json` and if you need specific types they might be exported from new packages (for example `PlayerMachineState` and `SpeedMachineState` are now exported from `@rrweb/replay`). Check the `package.json`'s `main` and `exports` field for the available files.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`7261c43`](https://github.com/rrweb-io/rrweb/commit/7261c43f60973e88325edf832e4d0e057fbff0ae), [`4014305`](https://github.com/rrweb-io/rrweb/commit/40143059446cee5c042c007b1c2e976f36e172f5), [`609b7fa`](https://github.com/rrweb-io/rrweb/commit/609b7fac79a552f746dc880a28927dee382cd082), [`82f6fec`](https://github.com/rrweb-io/rrweb/commit/82f6fecf36413ecbc994a510144487f1de20d1d5), [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf), [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf), [`5c27b76`](https://github.com/rrweb-io/rrweb/commit/5c27b763192bda9dd91806f95df7c1cd0ab083a6), [`d38893f`](https://github.com/rrweb-io/rrweb/commit/d38893f6338facf331fd1f6e63c121120b81177d), [`d7cf8dd`](https://github.com/rrweb-io/rrweb/commit/d7cf8dd07547f6fb22ef82e341a88357c4053bd3), [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf), [`e08706a`](https://github.com/rrweb-io/rrweb/commit/e08706ae60268b6eb05c6292ef948c71bd423ce3)]:
14+

packages/plugins/rrweb-plugin-canvas-webrtc-record/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rrweb/rrweb-plugin-canvas-webrtc-record",
3-
"version": "2.0.0-alpha.14",
3+
"version": "2.0.0-alpha.15",
44
"description": "",
55
"type": "module",
66
"main": "./dist/rrweb-plugin-canvas-webrtc-record.umd.cjs",
@@ -43,12 +43,12 @@
4343
},
4444
"homepage": "https://github.com/rrweb-io/rrweb#readme",
4545
"devDependencies": {
46-
"rrweb": "^2.0.0-alpha.14",
46+
"rrweb": "^2.0.0-alpha.15",
4747
"typescript": "^4.7.3",
4848
"vite": "^5.2.8",
4949
"vite-plugin-dts": "^3.8.1"
5050
},
5151
"peerDependencies": {
52-
"rrweb": "^2.0.0-alpha.14"
52+
"rrweb": "^2.0.0-alpha.15"
5353
}
5454
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# @rrweb/rrweb-plugin-canvas-webrtc-replay
2+
3+
## 2.0.0-alpha.15
4+
5+
### Major Changes
6+
7+
- [#1497](https://github.com/rrweb-io/rrweb/pull/1497) [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf) Thanks [@Juice10](https://github.com/Juice10)! - Split plugins out of rrweb and move them into their own packages: @rrweb/packer, @rrweb/rrweb-plugin-canvas-webrtc-record, @rrweb/rrweb-plugin-canvas-webrtc-replay, @rrweb/rrweb-plugin-sequential-id-record, @rrweb/rrweb-plugin-sequential-id-replay, @rrweb/rrweb-plugin-console-record, @rrweb/rrweb-plugin-console-replay. Check out the README of each package for more information or check out https://github.com/rrweb-io/rrweb/pull/1033 to see the changes.
8+
9+
- [#1497](https://github.com/rrweb-io/rrweb/pull/1497) [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf) Thanks [@Juice10](https://github.com/Juice10)! - Distributed files have new filenames, paths and extensions. **Important: If you reference distributed files or types directly, you might have to update your paths/filenames. E.g. you import from `rrweb/typings/...` or `rrdom/es`. However you run `import rrweb from 'rrweb'` you won't notice a difference with this change.** If you include rrweb files directly in a script tag, you might have to update that path to include a the `.umd.cjs` files instead. All `.js` files now use ES modules which can be used in modern browsers, node.js and bundlers that support ES modules. All npm packages now also ship `.cjs` and `.umd.cjs` files. The `.umd.cjs` files are CommonJS modules that bundle all files together to make it easy to ship one file to browser environments (similar to the previous `.js` files). The `.cjs` files are CommonJS modules that can be used in older Node.js environments. Types should be better defined in `package.json` and if you need specific types they might be exported from new packages (for example `PlayerMachineState` and `SpeedMachineState` are now exported from `@rrweb/replay`). Check the `package.json`'s `main` and `exports` field for the available files.
10+
11+
### Patch Changes
12+
13+
- [#1033](https://github.com/rrweb-io/rrweb/pull/1033) [`7261c43`](https://github.com/rrweb-io/rrweb/commit/7261c43f60973e88325edf832e4d0e057fbff0ae) Thanks [@Juice10](https://github.com/Juice10)! - Export `ReplayPlugin` from rrweb directly. Previously we had to do `import type { ReplayPlugin } from 'rrweb/dist/types';` now we can do `import type { ReplayPlugin } from 'rrweb';`
14+
15+
- Updated dependencies [[`7261c43`](https://github.com/rrweb-io/rrweb/commit/7261c43f60973e88325edf832e4d0e057fbff0ae), [`4014305`](https://github.com/rrweb-io/rrweb/commit/40143059446cee5c042c007b1c2e976f36e172f5), [`609b7fa`](https://github.com/rrweb-io/rrweb/commit/609b7fac79a552f746dc880a28927dee382cd082), [`82f6fec`](https://github.com/rrweb-io/rrweb/commit/82f6fecf36413ecbc994a510144487f1de20d1d5), [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf), [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf), [`5c27b76`](https://github.com/rrweb-io/rrweb/commit/5c27b763192bda9dd91806f95df7c1cd0ab083a6), [`d38893f`](https://github.com/rrweb-io/rrweb/commit/d38893f6338facf331fd1f6e63c121120b81177d), [`d7cf8dd`](https://github.com/rrweb-io/rrweb/commit/d7cf8dd07547f6fb22ef82e341a88357c4053bd3), [`2606a2a`](https://github.com/rrweb-io/rrweb/commit/2606a2a28f2a6d897b8ae4ea3ec40ef0eeacbfaf), [`e08706a`](https://github.com/rrweb-io/rrweb/commit/e08706ae60268b6eb05c6292ef948c71bd423ce3)]:
16+

packages/plugins/rrweb-plugin-canvas-webrtc-replay/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rrweb/rrweb-plugin-canvas-webrtc-replay",
3-
"version": "2.0.0-alpha.14",
3+
"version": "2.0.0-alpha.15",
44
"description": "",
55
"type": "module",
66
"main": "./dist/rrweb-plugin-canvas-webrtc-replay.umd.cjs",
@@ -43,12 +43,12 @@
4343
},
4444
"homepage": "https://github.com/rrweb-io/rrweb#readme",
4545
"devDependencies": {
46-
"rrweb": "^2.0.0-alpha.14",
46+
"rrweb": "^2.0.0-alpha.15",
4747
"typescript": "^4.7.3",
4848
"vite": "^5.2.8",
4949
"vite-plugin-dts": "^3.8.1"
5050
},
5151
"peerDependencies": {
52-
"rrweb": "^2.0.0-alpha.14"
52+
"rrweb": "^2.0.0-alpha.15"
5353
}
5454
}

0 commit comments

Comments
 (0)