Chore: Bump up all package versions together whenever any one version changes (#1131)

* Bump up all package versions together whenever any one version changes.

Keeps everything in sync to make it easy to see if you have the correct dependencies.

https://github.com/changesets/changesets/blob/main/docs/fixed-packages.md

* Empty changeset as this changes nothing for the packages them selves

* Bring @rrweb/web-extension version inline with other packages

* separate the extension version from package.json's to avoid errors

---------

Co-authored-by: Yun Feng <yun.feng0817@gmail.com>
This commit is contained in:
Justin Halsall
2026-04-01 12:00:00 +08:00
committed by GitHub
parent 8edace971d
commit 10301288e4
4 changed files with 15 additions and 3 deletions

View File

@@ -2,7 +2,17 @@
"$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
"changelog": ["@changesets/changelog-github", { "repo": "rrweb-io/rrweb" }],
"commit": false,
"fixed": [],
"fixed": [
[
"rrweb",
"rrweb-snapshot",
"rrdom",
"rrdom-nodejs",
"rrweb-player",
"@rrweb/types",
"@rrweb/web-extension"
]
],
"linked": [],
"access": "public",
"baseBranch": "master",

View File

@@ -0,0 +1,2 @@
---
---

View File

@@ -1,7 +1,7 @@
{
"name": "@rrweb/web-extension",
"private": true,
"version": "2.0.0",
"version": "2.0.0-alpha.4",
"description": "The web extension of rrweb which helps to run rrweb on any website out of box",
"author": "rrweb-io",
"license": "MIT",

View File

@@ -66,7 +66,7 @@ export default defineConfig({
process.env.TARGET_BROWSER === 'chrome' ? 'chrome' : 'firefox';
const commonManifest = originalManifest.common;
const manifest = {
version: packageJson.version,
version: '2.0.0',
author: packageJson.author,
version_name: packageJson.dependencies?.rrweb?.replace('^', ''),
...commonManifest,