Skip to content

Commit

Permalink
Merge pull request #22 from pendo-io/fix-deploy
Browse files Browse the repository at this point in the history
Remove @pendo prefix from package.json name field
  • Loading branch information
dkindel authored Sep 13, 2024
2 parents 009721d + 135b563 commit 6321c05
Show file tree
Hide file tree
Showing 11 changed files with 57 additions and 64 deletions.
7 changes: 4 additions & 3 deletions packages/all/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"extends": "../../tsconfig.base.json",
"include": [
"src"
],
"include": ["src"],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
Expand All @@ -13,6 +11,9 @@
},
{
"path": "../packer"
},
{
"path": "../rrweb"
}
]
}
14 changes: 7 additions & 7 deletions packages/plugins/rrweb-plugin-canvas-webrtc-record/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"extends": "../../../tsconfig.base.json",
"include": [
"src"
],
"exclude": [
"vite.config.ts"
],
"include": ["src"],
"exclude": ["vite.config.ts"],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"references": []
"references": [
{
"path": "../../rrweb"
}
]
}
14 changes: 7 additions & 7 deletions packages/plugins/rrweb-plugin-canvas-webrtc-replay/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"extends": "../../../tsconfig.base.json",
"include": [
"src"
],
"exclude": [
"vite.config.ts"
],
"include": ["src"],
"exclude": ["vite.config.ts"],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"references": []
"references": [
{
"path": "../../rrweb"
}
]
}
17 changes: 8 additions & 9 deletions packages/plugins/rrweb-plugin-console-record/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"extends": "../../../tsconfig.base.json",
"include": [
"src"
],
"exclude": [
"vite.config.ts",
"vitest.config.ts",
"test"
],
"include": ["src"],
"exclude": ["vite.config.ts", "vitest.config.ts", "test"],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",

// TODO: enable me in the future
// at time of writing (April 2024) there are 6 errors in this package
"strict": false
},
"references": []
"references": [
{
"path": "../../rrweb"
}
]
}
13 changes: 5 additions & 8 deletions packages/plugins/rrweb-plugin-console-replay/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
{
"extends": "../../../tsconfig.base.json",
"include": [
"src"
],
"exclude": [
"vite.config.ts",
"dist",
"tsconfig.json"
],
"include": ["src"],
"exclude": ["vite.config.ts", "dist", "tsconfig.json"],
"compilerOptions": {
"rootDir": ".",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"references": [
{
"path": "../rrweb-plugin-console-record"
},
{
"path": "../../rrweb"
}
]
}
14 changes: 7 additions & 7 deletions packages/plugins/rrweb-plugin-sequential-id-record/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"extends": "../../../tsconfig.base.json",
"include": [
"src"
],
"exclude": [
"vite.config.ts"
],
"include": ["src"],
"exclude": ["vite.config.ts"],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"references": []
"references": [
{
"path": "../../rrweb"
}
]
}
13 changes: 5 additions & 8 deletions packages/plugins/rrweb-plugin-sequential-id-replay/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
{
"extends": "../../../tsconfig.base.json",
"include": [
"src"
],
"exclude": [
"vite.config.ts",
"dist",
"tsconfig.json"
],
"include": ["src"],
"exclude": ["vite.config.ts", "dist", "tsconfig.json"],
"compilerOptions": {
"rootDir": ".",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"references": [
{
"path": "../rrweb-plugin-sequential-id-record"
},
{
"path": "../../rrweb"
}
]
}
7 changes: 4 additions & 3 deletions packages/record/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"extends": "../../tsconfig.base.json",
"include": [
"src"
],
"include": ["src"],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"references": [
{
"path": "../types"
},
{
"path": "../rrweb"
}
]
}
7 changes: 4 additions & 3 deletions packages/replay/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"extends": "../../tsconfig.base.json",
"include": [
"src"
],
"include": ["src"],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"references": [
{
"path": "../types"
},
{
"path": "../rrweb"
}
]
}
2 changes: 1 addition & 1 deletion packages/rrweb/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@pendo/rrweb",
"name": "rrweb",
"version": "2.0.0-alpha.17",
"description": "record and replay the web",
"scripts": {
Expand Down
13 changes: 5 additions & 8 deletions packages/web-extension/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,15 @@
"incremental": true,
"resolveJsonModule": true,
"paths": {
"~/*": [
"src/*"
]
"~/*": ["src/*"]
},
"jsx": "react-jsx"
},
"exclude": [
"dist",
"node_modules",
"vite.config.ts"
],
"exclude": ["dist", "node_modules", "vite.config.ts"],
"references": [
{
"path": "../rrweb"
},
{
"path": "../rrweb-player"
},
Expand Down

0 comments on commit 6321c05

Please sign in to comment.