Skip to content

Commit abc8426

Browse files
committed
chore: Bump version to 0.0.20
1 parent be8f651 commit abc8426

File tree

10 files changed

+77
-71
lines changed

10 files changed

+77
-71
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.0.20 - 2025-06-11
2+
3+
- chore: to trigger release (#81)
4+
- chore: release rrweb-player (#80)
5+
- fix: getting packages in step (#79)
6+
17
## 0.0.19 - 2025-06-11
28

39
- fix: get packages on same versions (#78)

packages/plugins/rrweb-plugin-console-record/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@posthog/rrweb-plugin-console-record",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"description": "",
55
"type": "module",
66
"main": "./dist/rrweb-plugin-console-record.umd.cjs",

packages/record/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@posthog/rrweb-record",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"publishConfig": {
55
"access": "public"
66
},

packages/rrdom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@posthog/rrdom",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"license": "MIT",
55
"type": "module",
66
"main": "./dist/rrdom.cjs",

packages/rrweb-player/.svelte-kit/ambient.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ declare module '$env/static/private' {
9797
export const npm_package_types: string;
9898
export const npm_package_homepage: string;
9999
export const DOTNET_SKIP_FIRST_TIME_EXPERIENCE: string;
100+
export const GOROOT_1_21_X64: string;
100101
export const JAVA_HOME_17_X64: string;
101102
export const ImageVersion: string;
102103
export const npm_package_exports___hooks_types: string;
@@ -113,7 +114,6 @@ declare module '$env/static/private' {
113114
export const JOURNAL_STREAM: string;
114115
export const GITHUB_WORKFLOW: string;
115116
export const _: string;
116-
export const GOROOT_1_24_X64: string;
117117
export const npm_package_scripts_lint: string;
118118
export const npm_config_registry: string;
119119
export const ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE: string;
@@ -344,6 +344,7 @@ declare module '$env/dynamic/private' {
344344
npm_package_types: string;
345345
npm_package_homepage: string;
346346
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: string;
347+
GOROOT_1_21_X64: string;
347348
JAVA_HOME_17_X64: string;
348349
ImageVersion: string;
349350
npm_package_exports___hooks_types: string;
@@ -360,7 +361,6 @@ declare module '$env/dynamic/private' {
360361
JOURNAL_STREAM: string;
361362
GITHUB_WORKFLOW: string;
362363
_: string;
363-
GOROOT_1_24_X64: string;
364364
npm_package_scripts_lint: string;
365365
npm_config_registry: string;
366366
ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE: string;

packages/rrweb-player/package.json

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,64 @@
11
{
2-
"name": "@posthog/rrweb-player",
3-
"version": "0.0.19",
4-
"devDependencies": {
5-
"@posthog/rrweb-types": "*",
6-
"@sveltejs/adapter-auto": "^3.0.0",
7-
"@sveltejs/kit": "^2.0.0",
8-
"@sveltejs/package": "^2.0.0",
9-
"@sveltejs/vite-plugin-svelte": "^3.0.0",
10-
"@typescript-eslint/eslint-plugin": "^7.0.0",
11-
"@typescript-eslint/parser": "^7.0.0",
12-
"eslint-plugin-svelte": "^2.37.0",
13-
"prettier-plugin-svelte": "^3.1.2",
14-
"svelte": "^4.2.14",
15-
"svelte-check": "^3.4.3",
16-
"svelte-preprocess": "^5.0.3",
17-
"svelte2tsx": "^0.7.30",
18-
"tslib": "^2.0.0",
19-
"vite": "^5.3.1"
20-
},
21-
"dependencies": {
22-
"@tsconfig/svelte": "^1.0.0",
23-
"@posthog/rrweb-replay": "*",
24-
"@posthog/rrweb-packer": "*"
25-
},
26-
"scripts": {
27-
"dev": "vite build --watch",
28-
"build": "vite build",
29-
"prepublishOnly": "yarn build",
30-
"start": "vite",
31-
"check-types": "svelte-check --tsconfig ./tsconfig.json",
32-
"prepublish": "yarn build",
33-
"lint": "yarn eslint src/**/*.ts"
34-
},
35-
"description": "rrweb's replayer UI",
36-
"main": "./dist/rrweb-player.umd.cjs",
37-
"module": "./dist/rrweb-player.js",
38-
"unpkg": "./dist/rrweb-player.umd.cjs",
39-
"typings": "dist/rrweb-player.d.ts",
40-
"exports": {
41-
".": {
42-
"import": {
43-
"types": "./dist/rrweb-player.d.ts",
44-
"default": "./dist/rrweb-player.js"
45-
},
46-
"require": {
47-
"types": "./dist/rrweb-player.d.cts",
48-
"default": "./dist/rrweb-player.cjs"
49-
}
2+
"name": "@posthog/rrweb-player",
3+
"version": "0.0.20",
4+
"devDependencies": {
5+
"@posthog/rrweb-types": "*",
6+
"@sveltejs/adapter-auto": "^3.0.0",
7+
"@sveltejs/kit": "^2.0.0",
8+
"@sveltejs/package": "^2.0.0",
9+
"@sveltejs/vite-plugin-svelte": "^3.0.0",
10+
"@typescript-eslint/eslint-plugin": "^7.0.0",
11+
"@typescript-eslint/parser": "^7.0.0",
12+
"eslint-plugin-svelte": "^2.37.0",
13+
"prettier-plugin-svelte": "^3.1.2",
14+
"svelte": "^4.2.14",
15+
"svelte-check": "^3.4.3",
16+
"svelte-preprocess": "^5.0.3",
17+
"svelte2tsx": "^0.7.30",
18+
"tslib": "^2.0.0",
19+
"vite": "^5.3.1"
5020
},
51-
"./dist/style.css": "./dist/style.css"
52-
},
53-
"files": [
54-
"dist",
55-
"package.json"
56-
],
57-
"type": "module",
58-
"repository": {
59-
"type": "git",
60-
"url": "git+https://github.com/PostHog/posthog-rrweb.git"
61-
},
62-
"author": "yanzhen@smartx.com",
63-
"license": "MIT"
64-
}
21+
"dependencies": {
22+
"@tsconfig/svelte": "^1.0.0",
23+
"@posthog/rrweb-replay": "*",
24+
"@posthog/rrweb-packer": "*"
25+
},
26+
"scripts": {
27+
"dev": "vite build --watch",
28+
"build": "vite build",
29+
"prepublishOnly": "yarn build",
30+
"start": "vite",
31+
"check-types": "svelte-check --tsconfig ./tsconfig.json",
32+
"prepublish": "yarn build",
33+
"lint": "yarn eslint src/**/*.ts"
34+
},
35+
"description": "rrweb's replayer UI",
36+
"main": "./dist/rrweb-player.umd.cjs",
37+
"module": "./dist/rrweb-player.js",
38+
"unpkg": "./dist/rrweb-player.umd.cjs",
39+
"typings": "dist/rrweb-player.d.ts",
40+
"exports": {
41+
".": {
42+
"import": {
43+
"types": "./dist/rrweb-player.d.ts",
44+
"default": "./dist/rrweb-player.js"
45+
},
46+
"require": {
47+
"types": "./dist/rrweb-player.d.cts",
48+
"default": "./dist/rrweb-player.cjs"
49+
}
50+
},
51+
"./dist/style.css": "./dist/style.css"
52+
},
53+
"files": [
54+
"dist",
55+
"package.json"
56+
],
57+
"type": "module",
58+
"repository": {
59+
"type": "git",
60+
"url": "git+https://github.com/PostHog/posthog-rrweb.git"
61+
},
62+
"author": "yanzhen@smartx.com",
63+
"license": "MIT"
64+
}

packages/rrweb-snapshot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@posthog/rrweb-snapshot",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"description": "rrweb's component to take a snapshot of DOM, aka DOM serializer",
55
"scripts": {
66
"prepare": "npm run prepack",

packages/rrweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@posthog/rrweb",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"description": "record and replay the web",
55
"scripts": {
66
"prepare": "npm run prepack",

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@posthog/rrweb-types",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"scripts": {
55
"dev": "vite build --watch",
66
"build": "yarn turbo run prepublish",

packages/utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@posthog/rrweb-utils",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"scripts": {
55
"dev": "vite build --watch",
66
"build": "tsc -noEmit && vite build",

0 commit comments

Comments
 (0)