File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -84,4 +84,10 @@ module.exports = [
8484 gzip : true ,
8585 limit : '80 KB' ,
8686 } ,
87+ {
88+ name : '@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified)' ,
89+ path : 'packages/browser/build/bundles/bundle.replay.min.js' ,
90+ gzip : true ,
91+ limit : '80 KB' ,
92+ } ,
8793] ;
Original file line number Diff line number Diff line change @@ -14,4 +14,16 @@ const builds = [];
1414 builds . push ( ...makeBundleConfigVariants ( baseBundleConfig ) ) ;
1515} ) ;
1616
17+ // Full bundle incl. replay only available for es6
18+ const replayBaseBundleConfig = makeBaseBundleConfig ( {
19+ bundleType : 'standalone' ,
20+ entrypoints : [ 'src/index.ts' ] ,
21+ jsVersion : 'es6' ,
22+ licenseTitle : '@sentry/browser & @sentry/replay' ,
23+ outputFileBase : ( ) => 'bundles/bundle.replay' ,
24+ includeReplay : true ,
25+ } ) ;
26+
27+ builds . push ( ...makeBundleConfigVariants ( replayBaseBundleConfig ) ) ;
28+
1729export default builds ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const builds = [];
1414 builds . push ( ...makeBundleConfigVariants ( baseBundleConfig ) ) ;
1515} ) ;
1616
17- // Full bundle incl. replay only avaialable for es6
17+ // Full bundle incl. replay only available for es6
1818const replayBaseBundleConfig = makeBaseBundleConfig ( {
1919 bundleType : 'standalone' ,
2020 entrypoints : [ 'src/index.bundle.replay.ts' ] ,
You can’t perform that action at this time.
0 commit comments