Skip to content

Commit 90f6b76

Browse files
fix(components): correctly exclude Dialog as unmigrated
Dialog was previously treated as an internal component with no test file expected, but it still uses the old token system and hasn't been migrated. Add it to the Slice 2-4 exclude lists (tsconfig.json, eslint.config.js, jest.config.cjs) instead.
1 parent 0d8e65a commit 90f6b76

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

packages/components/eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export default tseslint.config(
3131
"src/components/Autocomplete/**",
3232
"src/components/Cell/**",
3333
"src/components/Chip/**",
34+
"src/components/Dialog/**",
3435
"src/components/Environment/**",
3536
"src/components/Menu/**",
3637
"src/components/OfflineBanner/**",

packages/components/jest.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const testPathIgnorePatterns = [
2020
"<rootDir>/src/components/Autocomplete/",
2121
"<rootDir>/src/components/Cell/",
2222
"<rootDir>/src/components/Chip/",
23+
"<rootDir>/src/components/Dialog/",
2324
"<rootDir>/src/components/Environment/",
2425
"<rootDir>/src/components/Menu/",
2526
"<rootDir>/src/components/OfflineBanner/",

packages/components/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"src/components/Autocomplete",
1515
"src/components/Cell",
1616
"src/components/Chip",
17+
"src/components/Dialog",
1718
"src/components/Environment",
1819
"src/components/Menu",
1920
"src/components/OfflineBanner",

0 commit comments

Comments
 (0)