Skip to content

Commit 86162a9

Browse files
committed
mixpanel release changes
1 parent f0b4bbd commit 86162a9

File tree

29 files changed

+324
-91
lines changed

29 files changed

+324
-91
lines changed

.changeset/config.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
22
"$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
3-
"changelog": ["@changesets/changelog-github", { "repo": "mixpanel/rrweb" }],
3+
"changelog": ["@changesets/changelog-github", { "repo": "rrweb-io/rrweb" }],
44
"commit": false,
55
"fixed": [
66
[
7-
"@mixpanel/rrweb",
8-
"@mixpanel/rrweb-snapshot",
9-
"@mixpanel/rrdom",
10-
"@mixpanel/rrdom-nodejs",
11-
"@mixpanel/rrweb-player",
12-
"@mixpanel/rrweb-all",
13-
"@mixpanel/rrweb-replay",
14-
"@mixpanel/rrweb-record",
15-
"@mixpanel/rrweb-types",
16-
"@mixpanel/rrweb-packer",
17-
"@mixpanel/rrweb-utils",
18-
"@mixpanel/rrweb-web-extension",
19-
"@mixpanel/rrvideo",
20-
"@mixpanel/rrweb-plugin-console-record",
21-
"@mixpanel/rrweb-plugin-console-replay",
22-
"@mixpanel/rrweb-plugin-sequential-id-record",
23-
"@mixpanel/rrweb-plugin-sequential-id-replay",
24-
"@mixpanel/rrweb-plugin-canvas-webrtc-record",
25-
"@mixpanel/rrweb-plugin-canvas-webrtc-replay"
7+
"rrweb",
8+
"rrweb-snapshot",
9+
"rrdom",
10+
"rrdom-nodejs",
11+
"rrweb-player",
12+
"@rrweb/all",
13+
"@rrweb/replay",
14+
"@rrweb/record",
15+
"@rrweb/types",
16+
"@rrweb/packer",
17+
"@rrweb/utils",
18+
"@rrweb/web-extension",
19+
"rrvideo",
20+
"@rrweb/rrweb-plugin-console-record",
21+
"@rrweb/rrweb-plugin-console-replay",
22+
"@rrweb/rrweb-plugin-sequential-id-record",
23+
"@rrweb/rrweb-plugin-sequential-id-replay",
24+
"@rrweb/rrweb-plugin-canvas-webrtc-record",
25+
"@rrweb/rrweb-plugin-canvas-webrtc-replay"
2626
]
2727
],
2828
"linked": [],

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@mixpanel/rrweb",
2+
"name": "@mixpanel/rrweb_monorepo",
33
"description": "record and replay the web",
44
"repository": {
55
"type": "git",
@@ -56,7 +56,8 @@
5656
"live-stream": "cd packages/rrweb && yarn live-stream",
5757
"lint": "yarn run concurrently --success=all -r -m=1 'yarn run markdownlint docs' 'ESLINT_USE_FLAT_CONFIG=false yarn eslint packages/*/src --ext .ts,.tsx,.js,.jsx,.svelte'",
5858
"lint:report": "ESLINT_USE_FLAT_CONFIG=false yarn eslint --output-file eslint_report.json --format json packages/*/src --ext .ts,.tsx,.js,.jsx",
59-
"release": "yarn build:all && changeset publish"
59+
"release": "yarn build:all && changeset publish",
60+
"mixpanel-version": "node write-mixpanel-version.js"
6061
},
6162
"resolutions": {
6263
"**/cssom": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz",

packages/all/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mixpanel/rrweb-all",
3-
"version": "2.0.0-alpha.18",
3+
"version": "2.0.0-alpha.18.1",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -27,19 +27,19 @@
2727
},
2828
"license": "MIT",
2929
"type": "module",
30-
"main": "./dist/all.cjs",
31-
"module": "./dist/all.js",
32-
"unpkg": "./dist/all.umd.cjs",
30+
"main": "./dist/rrweb-all.cjs",
31+
"module": "./dist/rrweb-all.js",
32+
"unpkg": "./dist/rrweb-all.umd.cjs",
3333
"typings": "dist/index.d.ts",
3434
"exports": {
3535
".": {
3636
"import": {
3737
"types": "./dist/index.d.ts",
38-
"default": "./dist/all.js"
38+
"default": "./dist/rrweb-all.js"
3939
},
4040
"require": {
4141
"types": "./dist/index.d.cts",
42-
"default": "./dist/all.cjs"
42+
"default": "./dist/rrweb-all.cjs"
4343
}
4444
}
4545
},

packages/all/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export * from 'rrweb';
2-
export * from '@rrweb/packer';
3-
// export * from '@rrweb/rrweb-plugin-console-record';
4-
// export * from '@rrweb/rrweb-plugin-console-replay';
1+
export * from '@mixpanel/rrweb';
2+
export * from '@mixpanel/rrweb-packer';
3+
// export * from '@mixpanel/rrweb-plugin-console-record';
4+
// export * from '@mixpanel/rrweb-plugin-console-replay';

packages/packer/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mixpanel/rrweb-packer",
3-
"version": "2.0.0-alpha.18",
3+
"version": "2.0.0-alpha.18.1",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -27,9 +27,9 @@
2727
},
2828
"license": "MIT",
2929
"type": "module",
30-
"main": "./dist/packer.cjs",
31-
"module": "./dist/packer.js",
32-
"unpkg": "./dist/packer.js",
30+
"main": "./dist/rrweb-packer.cjs",
31+
"module": "./dist/rrweb-packer.js",
32+
"unpkg": "./dist/rrweb-packer.js",
3333
"typings": "dist/packer.d.ts",
3434
"exports": {
3535
".": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mixpanel/rrweb-plugin-canvas-webrtc-record",
3-
"version": "2.0.0-alpha.18",
3+
"version": "2.0.0-alpha.18.1",
44
"description": "",
55
"type": "module",
66
"main": "./dist/rrweb-plugin-canvas-webrtc-record.umd.cjs",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mixpanel/rrweb-plugin-canvas-webrtc-replay",
3-
"version": "2.0.0-alpha.18",
3+
"version": "2.0.0-alpha.18.1",
44
"description": "",
55
"type": "module",
66
"main": "./dist/rrweb-plugin-canvas-webrtc-replay.umd.cjs",

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": "@mixpanel/rrweb-plugin-console-record",
3-
"version": "2.0.0-alpha.18",
3+
"version": "2.0.0-alpha.18.1",
44
"description": "",
55
"type": "module",
66
"main": "./dist/rrweb-plugin-console-record.umd.cjs",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mixpanel/rrweb-plugin-console-replay",
3-
"version": "2.0.0-alpha.18",
3+
"version": "2.0.0-alpha.18.1",
44
"description": "",
55
"type": "module",
66
"main": "./dist/rrweb-plugin-console-replay.umd.cjs",

packages/plugins/rrweb-plugin-sequential-id-record/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mixpanel/rrweb-plugin-sequential-id-record",
3-
"version": "2.0.0-alpha.18",
3+
"version": "2.0.0-alpha.18.1",
44
"description": "",
55
"type": "module",
66
"main": "./dist/rrweb-plugin-sequential-id-record.umd.cjs",

0 commit comments

Comments
 (0)