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 9
9
- name : github
10
10
includeNames : /^sentry-.*$/
11
11
- name : gcs
12
- includeNames : /*\.js.*$/
12
+ includeNames : /. *\.js.*$/
13
13
bucket : sentry-js-sdk
14
14
paths :
15
15
- path : /{{version}}/
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 5.0.1
4
+
5
+ - [ browser] fix: Add missing types
6
+
3
7
## 5.0.0
4
8
5
9
This 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 55
55
"webpack" : " ^4.29.6"
56
56
},
57
57
"scripts" : {
58
- "build" : " run-s build:esm build:bundle" ,
58
+ "build" : " run-s build:dist build: esm build:bundle" ,
59
59
"build:bundle" : " rollup --config" ,
60
+ "build:dist" : " tsc -p tsconfig.build.json" ,
60
61
"build:esm" : " tsc -p tsconfig.esm.json" ,
61
62
"build:watch" : " rollup --config --watch" ,
62
63
"clean" : " rimraf dist coverage .rpt2_cache build esm" ,
Original file line number Diff line number Diff line change @@ -65,18 +65,6 @@ const bundleConfig = {
65
65
} ;
66
66
67
67
export 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
- } ,
80
68
{
81
69
...bundleConfig ,
82
70
output : {
You can’t perform that action at this time.
0 commit comments