Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor @bugsnag/browser #2252

Open
wants to merge 51 commits into
base: integration/typescript
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 50 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
3daf716
refactor: :recycle: convert browser package to typescript
gingerbenw Nov 6, 2024
a089f1f
refactor: :recycle: refactor plugin-navigation-breadcrumbs
gingerbenw Nov 8, 2024
c55e8e8
refactor: :recycle: refactor plugin-simple-throttle
gingerbenw Nov 8, 2024
65d11f0
refactor: :recycle: refactor plugin-interaction-breadcrumbs
gingerbenw Nov 11, 2024
6da01bb
update types
gingerbenw Nov 15, 2024
7e8257a
refactor: :recycle: refactor plugin-inline-script-content
gingerbenw Nov 18, 2024
8c78faf
fix rollup config
gingerbenw Dec 9, 2024
b813a19
update imports
gingerbenw Dec 11, 2024
1c0e1e9
fix import
gingerbenw Dec 11, 2024
a70287f
fix dist and tests
Dec 11, 2024
066d17e
fix dist and tests
Dec 11, 2024
d2badbd
fix dist and tests
Dec 11, 2024
e21209b
browser bundling
Dec 18, 2024
337ca20
browser bundling
Dec 18, 2024
7a9ce69
browser bundling
Dec 18, 2024
2b89432
browser bundling
Dec 19, 2024
2d3049b
browser bundling
Dec 19, 2024
2a9479d
browser bundling
Dec 19, 2024
1c3b2ac
browser bundling
Dec 19, 2024
15ffd87
browser bundling
Dec 19, 2024
c8d3e00
browser bundling
Dec 19, 2024
0a8d786
browser bundling
Dec 19, 2024
d8b172d
browser bundling
Dec 19, 2024
af4b603
browser bundling
Dec 19, 2024
7948b6c
browser bundling
Dec 20, 2024
4e011b6
browser bundling
Dec 20, 2024
3cea4f3
revert inline-script-content changes
Dec 20, 2024
c4e511d
browser bundling
Dec 20, 2024
ccd55cf
browser bundling
Dec 20, 2024
818ceac
browser bundling
Dec 23, 2024
c379891
browser bundling
Dec 23, 2024
2aedd15
browser bundling
Dec 23, 2024
18c153a
browser bundling
Dec 23, 2024
111682e
browser bundling
Dec 23, 2024
1cb15ff
trigger build
Dec 23, 2024
a792936
trigger build
Dec 23, 2024
be9d436
trigger build
Dec 23, 2024
21f1b38
browser bundling
Dec 23, 2024
9a0c817
revert mockEventTarget
Dec 24, 2024
71331ce
browser bundling
Dec 24, 2024
0052406
browser bundling
Dec 24, 2024
a10a0f8
Revert "browser bundling"
Dec 24, 2024
4fb4738
Revert "Revert "browser bundling""
Dec 24, 2024
64823d5
browser bundling
Dec 24, 2024
746d8a4
browser bundling
Dec 24, 2024
b1bd4f0
disable terser
Dec 24, 2024
f94feff
browser bundling
Dec 27, 2024
0438ff1
browser bundling
Dec 27, 2024
79deeb7
Revert "browser bundling"
Dec 27, 2024
63d1290
browser bundling
Dec 27, 2024
3196415
browser bundling
Dec 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .rollup/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const defaultOptions = () => ({
output: undefined
})

const sharedOutput = {
export const sharedOutput = {
dir: 'dist',
generatedCode: {
preset: 'es2015',
Expand Down Expand Up @@ -59,7 +59,8 @@ function createRollupConfig (options = defaultOptions()) {
emitDeclarationOnly: true,
declarationDir: 'dist/types',
}
})
}),
...(options.plugins ?? [])
]
}
}
Expand Down
261 changes: 252 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions packages/browser/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const babelConfig = require('../../babel.config.js')

module.exports = babelConfig
Loading
Loading