File tree 3 files changed +19
-1
lines changed
3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -84,4 +84,10 @@ module.exports = [
84
84
gzip : true ,
85
85
limit : '80 KB' ,
86
86
} ,
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
+ } ,
87
93
] ;
Original file line number Diff line number Diff line change @@ -14,4 +14,16 @@ const builds = [];
14
14
builds . push ( ...makeBundleConfigVariants ( baseBundleConfig ) ) ;
15
15
} ) ;
16
16
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
+
17
29
export default builds ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const builds = [];
14
14
builds . push ( ...makeBundleConfigVariants ( baseBundleConfig ) ) ;
15
15
} ) ;
16
16
17
- // Full bundle incl. replay only avaialable for es6
17
+ // Full bundle incl. replay only available for es6
18
18
const replayBaseBundleConfig = makeBaseBundleConfig ( {
19
19
bundleType : 'standalone' ,
20
20
entrypoints : [ 'src/index.bundle.replay.ts' ] ,
You can’t perform that action at this time.
0 commit comments