File tree Expand file tree Collapse file tree 4 files changed +7
-14
lines changed Expand file tree Collapse file tree 4 files changed +7
-14
lines changed Original file line number Diff line number Diff line change 99 - name : github
1010 includeNames : /^sentry-.*$/
1111 - name : gcs
12- includeNames : /*\.js.*$/
12+ includeNames : /. *\.js.*$/
1313 bucket : sentry-js-sdk
1414 paths :
1515 - path : /{{version}}/
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 5.0.1
4+
5+ - [ browser] fix: Add missing types
6+
37## 5.0.0
48
59This major bump brings a lot of internal improvements. Also, we extracted some integrations out of the SDKs and put them
Original file line number Diff line number Diff line change 5555 "webpack" : " ^4.29.6"
5656 },
5757 "scripts" : {
58- "build" : " run-s build:esm build:bundle" ,
58+ "build" : " run-s build:dist build: esm build:bundle" ,
5959 "build:bundle" : " rollup --config" ,
60+ "build:dist" : " tsc -p tsconfig.build.json" ,
6061 "build:esm" : " tsc -p tsconfig.esm.json" ,
6162 "build:watch" : " rollup --config --watch" ,
6263 "clean" : " rimraf dist coverage .rpt2_cache build esm" ,
Original file line number Diff line number Diff line change @@ -65,18 +65,6 @@ const bundleConfig = {
6565} ;
6666
6767export default [
68- {
69- input : 'src/index.ts' ,
70- output : {
71- file : 'dist/index.js' ,
72- format : 'cjs' ,
73- exports : 'named' ,
74- interop : false ,
75- sourcemap : true ,
76- } ,
77- external : [ 'tslib' ] ,
78- plugins,
79- } ,
8068 {
8169 ...bundleConfig ,
8270 output : {
You can’t perform that action at this time.
0 commit comments