From 9c84b7adc099e3a2e883c121640ad3d7b47d0853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=A8=E9=9C=96=E9=93=83?= Date: Sun, 25 Jan 2026 22:25:42 +0800 Subject: [PATCH] =?UTF-8?q?feat(deps):=20=E6=B7=BB=E5=8A=A0=20rrweb=20?= =?UTF-8?q?=E6=8E=A7=E5=88=B6=E5=8F=B0=E8=AE=B0=E5=BD=95=E5=92=8C=E5=9B=9E?= =?UTF-8?q?=E6=94=BE=E6=8F=92=E4=BB=B6=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 集成 @rrweb/rrweb-plugin-console-record 插件用于控制台记录功能 - 集成 @rrweb/rrweb-plugin-console-replay 插件用于控制台回放功能 - 更新 package-lock.json 中的相关依赖配置 - 添加 tailwindcss 依赖的 yaml 模块支持 --- package-lock.json | 37 +++++++++++++++++++++++++++++++++++++ package.json | 2 ++ 2 files changed, 39 insertions(+) diff --git a/package-lock.json b/package-lock.json index 0fa5549..06946dd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,8 @@ "version": "0.1.0", "dependencies": { "@rrweb/all": "^2.0.0-alpha.18", + "@rrweb/rrweb-plugin-console-record": "^2.0.0-alpha.18", + "@rrweb/rrweb-plugin-console-replay": "^2.0.0-alpha.18", "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.3.1", @@ -3095,6 +3097,24 @@ "fflate": "^0.4.4" } }, + "node_modules/@rrweb/rrweb-plugin-console-record": { + "version": "2.0.0-alpha.18", + "resolved": "https://registry.npmmirror.com/@rrweb/rrweb-plugin-console-record/-/rrweb-plugin-console-record-2.0.0-alpha.18.tgz", + "integrity": "sha512-R/ys7jrOXjCwcVOf3EkXtT3/XZQ+OMqy+3VhUmgrwngpvppThZlbK4a13OCECwkB8OCJ81S9oYleNbszja2IYA==", + "license": "MIT", + "peerDependencies": { + "rrweb": "^2.0.0-alpha.18" + } + }, + "node_modules/@rrweb/rrweb-plugin-console-replay": { + "version": "2.0.0-alpha.18", + "resolved": "https://registry.npmmirror.com/@rrweb/rrweb-plugin-console-replay/-/rrweb-plugin-console-replay-2.0.0-alpha.18.tgz", + "integrity": "sha512-JkoRrPtQDWUGHIy7lvshawK2kXSwYDZdnP0q2grdJrOoP9Qp+c3B3cE77lxuL9nZVm9MItyV+mkNbwMUbzWyfA==", + "license": "MIT", + "peerDependencies": { + "rrweb": "^2.0.0-alpha.18" + } + }, "node_modules/@rrweb/types": { "version": "2.0.0-alpha.18", "resolved": "https://registry.npmmirror.com/@rrweb/types/-/types-2.0.0-alpha.18.tgz", @@ -16469,6 +16489,23 @@ } } }, + "node_modules/tailwindcss/node_modules/yaml": { + "version": "2.8.2", + "resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.8.2.tgz", + "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==", + "license": "ISC", + "optional": true, + "peer": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + }, + "funding": { + "url": "https://github.com/sponsors/eemeli" + } + }, "node_modules/tapable": { "version": "2.3.0", "resolved": "https://registry.npmmirror.com/tapable/-/tapable-2.3.0.tgz", diff --git a/package.json b/package.json index 22e9fae..d57ee7b 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,8 @@ "private": true, "dependencies": { "@rrweb/all": "^2.0.0-alpha.18", + "@rrweb/rrweb-plugin-console-record": "^2.0.0-alpha.18", + "@rrweb/rrweb-plugin-console-replay": "^2.0.0-alpha.18", "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.3.1",