Skip to content

Commit 94a1bb3

Browse files
committed
remove more references
1 parent a592cf1 commit 94a1bb3

File tree

5 files changed

+2
-7
lines changed

5 files changed

+2
-7
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ pyproject.toml @getsentry/owners-pytho
172172
vercel.json @getsentry/owners-js-build
173173
/.github/workflows/frontend.yml @getsentry/owners-js-build
174174
/.github/file-filters.yml @getsentry/owners-js-build
175-
babel.config.* @getsentry/owners-js-build
176175
build-utils/ @getsentry/owners-js-build
177176
eslint.config.ts @getsentry/owners-js-build
178177
jest-balance.json @getsentry/owners-js-build

.github/dependabot.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ updates:
1515
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
1616
groups:
1717
# The name of the group, it will be used in PR titles and branch
18-
babel-dependencies:
19-
patterns:
20-
- '@babel/*'
2118
sentry-dependencies:
2219
patterns:
2320
- '@sentry/core'

.vercelignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
!src/sentry/locale/**
99
!build-utils
1010
!build-utils/**
11-
!babel.config.js
1211
!jest.config.js
1312
!now.json
1413
!package.json

eslint.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ export default typescript.config([
757757
plugins: {'@emotion': emotion},
758758
rules: {
759759
'@emotion/import-from-emotion': 'off', // Not needed, in v11 we import from @emotion/react
760-
'@emotion/jsx-import': 'off', // Not needed, handled by babel
760+
'@emotion/jsx-import': 'off', // Not needed, handled by swc
761761
'@emotion/no-vanilla': 'error',
762762
'@emotion/pkg-renaming': 'off', // Not needed, we have migrated to v11 and the old package names cannot be used anymore
763763
'@emotion/styled-import': 'error',

rspack.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ const appConfig: Configuration = {
308308
test: /\.(js|jsx|ts|tsx)$/,
309309
// core-js: Avoids recompiling core-js based on usage imports
310310
// react-select: Ships pre-compiled ESM with emotion's keyframes already
311-
// compiled via Babel. Re-processing with @swc/plugin-emotion causes
311+
// compiled via swc. Re-processing with @swc/plugin-emotion causes
312312
// "illegal escape sequence" warnings in dev mode.
313313
exclude: /node_modules[\\/](core-js|react-select)/,
314314
loader: 'builtin:swc-loader',

0 commit comments

Comments
 (0)