Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Commit b034734

Browse files
committed
fix comments
1 parent 8bce148 commit b034734

File tree

8 files changed

+9727
-9499
lines changed

8 files changed

+9727
-9499
lines changed

.devrev/repo.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
deployable: true

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @kunal-mohta-99 @shalomgk @kanishq1
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
workflow_dispatch:
8+
9+
jobs:
10+
release:
11+
name: Release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout Repo
15+
uses: actions/checkout@v3
16+
17+
- name: Setup Node.js lts/*
18+
uses: actions/setup-node@v3
19+
with:
20+
node-version: lts/*
21+
registry-url: 'https://registry.npmjs.org/'
22+
23+
- name: Install Dependencies
24+
run: yarn install --frozen-lockfile
25+
26+
- name: Publish to npm
27+
run: yarn run release && cd packages/record && npm publish
28+
env:
29+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@devrev-private:registry=https://registry.npmjs.org/

package.json

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
{
2-
"description": "record and replay the web",
2+
"description": "record and replay the web - devrev",
3+
"version": "1.0.0",
4+
"name": "@devrev/rrweb",
5+
"author": "Devrev",
36
"repository": {
47
"type": "git",
5-
"url": "git+ssh://[email protected]/rrweb-io/rrweb.git"
8+
"url": "git+ssh://[email protected]/devrev/rrweb.git"
69
},
710
"keywords": [
811
"rrweb"
912
],
10-
"author": "[email protected]",
1113
"license": "MIT",
1214
"bugs": {
13-
"url": "https://github.com/rrweb-io/rrweb/issues"
15+
"url": "https://github.com/devrev/rrweb/issues"
1416
},
15-
"private": true,
16-
"homepage": "https://github.com/rrweb-io/rrweb#readme",
17+
"homepage": "https://github.com/devrev/rrweb#readme",
1718
"workspaces": [
1819
"packages/*",
1920
"packages/plugins/*"
@@ -37,6 +38,7 @@
3738
"turbo": "^1.2.4",
3839
"typescript": "^4.9.5"
3940
},
41+
"private": true,
4042
"scripts": {
4143
"build:all": "NODE_OPTIONS='--max-old-space-size=4096' yarn run concurrently --success=all -r -m=1 'yarn workspaces-to-typescript-project-references' 'yarn turbo run prepublish'",
4244
"test": "yarn run concurrently --success=all -r -m=1 'yarn workspaces-to-typescript-project-references --check' 'yarn turbo run test --concurrency=1 --continue'",
@@ -59,5 +61,8 @@
5961
"browserslist": [
6062
"defaults",
6163
"not op_mini all"
62-
]
64+
],
65+
"publishConfig": {
66+
"registry": "https://registry.npmjs.org/"
67+
}
6368
}

packages/record/package.json

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
{
2-
"name": "@rrweb/record",
3-
"version": "2.0.0-alpha.14",
4-
"publishConfig": {
5-
"access": "public"
6-
},
2+
"name": "@devrev/record",
3+
"version": "1.0.0",
4+
"author": "Devrev",
75
"keywords": [
86
"rrweb",
9-
"@rrweb/record"
7+
"@devrev/record"
108
],
119
"scripts": {
1210
"dev": "vite build --watch",
@@ -17,13 +15,9 @@
1715
"prepublish": "npm run build",
1816
"lint": "yarn eslint src/**/*.ts"
1917
},
20-
"homepage": "https://github.com/rrweb-io/rrweb/tree/main/packages/@rrweb/record#readme",
21-
"bugs": {
22-
"url": "https://github.com/rrweb-io/rrweb/issues"
23-
},
2418
"repository": {
2519
"type": "git",
26-
"url": "git+https://github.com/rrweb-io/rrweb.git"
20+
"url": "git+https://github.com/devrev/rrweb.git"
2721
},
2822
"license": "MIT",
2923
"type": "module",
@@ -60,5 +54,8 @@
6054
},
6155
"browserslist": [
6256
"supports es6-class"
63-
]
57+
],
58+
"publishConfig": {
59+
"registry": "https://registry.npmjs.org/"
60+
}
6461
}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ declare module '$env/static/private' {
3232
export const DEPLOYMENT_BASEPATH: string;
3333
export const DOTNET_NOLOGO: string;
3434
export const npm_package_devDependencies_vitest: string;
35+
export const npm_config__devrev_private_registry: string;
3536
export const USER: string;
3637
export const npm_package_bin_svelte_kit: string;
3738
export const npm_package_dependencies_sirv: string;
@@ -275,6 +276,7 @@ declare module '$env/dynamic/private' {
275276
DEPLOYMENT_BASEPATH: string;
276277
DOTNET_NOLOGO: string;
277278
npm_package_devDependencies_vitest: string;
279+
npm_config__devrev_private_registry: string;
278280
USER: string;
279281
npm_package_bin_svelte_kit: string;
280282
npm_package_dependencies_sirv: string;

0 commit comments

Comments
 (0)