-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(replay): Add size limit entries for Replay (#6288)
Add size limit entries for Replay. One entry for the (currently still exisiting) NPM bundle and two more for the package built with WebPack. When comparing the size-limit results here with the results from the replay repo, the size goes up from 35 to 83KB but I'm pretty sure our result is more representative (the file already has 135 KB when inspecting it locally). My suspicion is that the size-limit action from the replay repo measures size differently, as it uses other GH actions and newer size-limit versions.
- Loading branch information
Showing
3 changed files
with
34 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,4 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"noImplicitAny": true, | ||
"noEmitOnError": false, | ||
"esModuleInterop": true, | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
"target": "es5" | ||
}, | ||
"compilerOptions": {}, | ||
"exclude": ["node_modules"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
{ | ||
"extends": "./config/tsconfig.core.json", | ||
"compilerOptions": { | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"noImplicitAny": true, | ||
"noEmitOnError": false, | ||
"esModuleInterop": true, | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
"types": ["node", "jest"], | ||
"target": "es5", | ||
"paths": { | ||
"@test": ["./test"], | ||
"@test/*": | ||
["./test/*"] | ||
}, | ||
"types": ["node", "jest"] | ||
"@test/*": ["./test/*"] | ||
} | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"test/**/*.ts", | ||
"rollup.config.ts", | ||
"jest.config.ts", | ||
"jest.setup.ts" | ||
], | ||
"include": ["src/**/*.ts", "test/**/*.ts", "rollup.config.ts", "jest.config.ts", "jest.setup.ts"], | ||
"exclude": ["node_modules"] | ||
} |