@betterbugs/rrweb-plugin-sequential-id-record 2.0.0-alpha.23 → 2.0.0-alpha.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +8 -12
package/README.md CHANGED
@@ -1,19 +1,19 @@
1
- # @rrweb/rrweb-plugin-sequential-id-record
1
+ # @betterbugs/rrweb-plugin-sequential-id-record
2
2
 
3
- Use this plugin in combination with the [@rrweb/rrweb-plugin-sequential-id-replay](../rrweb-plugin-sequential-id-replay) plugin to record and replay events with a sequential id.
3
+ Use this plugin in combination with the [@betterbugs/rrweb-plugin-sequential-id-replay](../rrweb-plugin-sequential-id-replay) plugin to record and replay events with a sequential id.
4
4
  See the [guide](../../../guide.md) for more info on rrweb.
5
5
 
6
6
  ## Installation
7
7
 
8
8
  ```bash
9
- npm install @rrweb/rrweb-plugin-sequential-id-record
9
+ npm install @betterbugs/rrweb-plugin-sequential-id-record
10
10
  ```
11
11
 
12
12
  ## Usage
13
13
 
14
14
  ```js
15
15
  import rrweb from 'rrweb';
16
- import { getRecordSequentialIdPlugin } from '@rrweb/rrweb-plugin-sequential-id-record';
16
+ import { getRecordSequentialIdPlugin } from '@betterbugs/rrweb-plugin-sequential-id-record';
17
17
 
18
18
  rrweb.record({
19
19
  emit: function emit(event) {
package/package.json CHANGED
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "name": "@betterbugs/rrweb-plugin-sequential-id-record",
3
- "version": "2.0.0-alpha.23",
4
- "publishConfig": {
5
- "access": "public"
6
- },
3
+ "version": "2.0.0-alpha.25",
7
4
  "description": "",
8
5
  "type": "module",
9
6
  "main": "./dist/rrweb-plugin-sequential-id-record.umd.cjs",
@@ -35,25 +32,24 @@
35
32
  },
36
33
  "repository": {
37
34
  "type": "git",
38
- "url": "git+https://github.com/BetterBugs-Team/rrweb.git"
35
+ "url": "git+https://github.com/rrweb-io/rrweb.git"
39
36
  },
40
37
  "keywords": [
41
- "rrweb",
42
- "betterbugs"
38
+ "rrweb"
43
39
  ],
44
- "author": "BetterBugs-Team",
40
+ "author": "yanzhen@smartx.com",
45
41
  "license": "MIT",
46
42
  "bugs": {
47
- "url": "https://github.com/BetterBugs-Team/rrweb/issues"
43
+ "url": "https://github.com/rrweb-io/rrweb/issues"
48
44
  },
49
- "homepage": "https://github.com/BetterBugs-Team/rrweb#readme",
45
+ "homepage": "https://github.com/rrweb-io/rrweb#readme",
50
46
  "devDependencies": {
51
- "@betterbugs/rrweb": "^2.0.0-alpha.23",
47
+ "@betterbugs/rrweb": "^2.0.0-alpha.25",
52
48
  "typescript": "^5.4.5",
53
49
  "vite": "^6.0.1",
54
50
  "vite-plugin-dts": "^3.9.1"
55
51
  },
56
52
  "peerDependencies": {
57
- "@betterbugs/rrweb": "^2.0.0-alpha.23"
53
+ "@betterbugs/rrweb": "^2.0.0-alpha.25"
58
54
  }
59
55
  }