Skip to content

Commit bb51166

Browse files
chore(deps): bump typescript from 5.6.3 to 5.9.3 (#1783)
* chore(deps): bump typescript from 5.6.3 to 5.9.3 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.6.3 to 5.9.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml) - [Commits](microsoft/TypeScript@v5.6.3...v5.9.3) --- updated-dependencies: - dependency-name: typescript dependency-version: 5.9.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): fix type issues --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pascal Zajac <[email protected]>
1 parent 4532520 commit bb51166

File tree

11 files changed

+143
-142
lines changed

11 files changed

+143
-142
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@commitlint/config-conventional": "^20.0.0",
2121
"@types/babel__standalone": "^7.1.9",
2222
"turbo": "^2.5.8",
23-
"typescript": "^5.6.3"
23+
"typescript": "^5.9.3"
2424
},
2525
"pnpm": {
2626
"patchedDependencies": {

packages/big-design-icons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@
7171
"rimraf": "^6.0.1",
7272
"styled-components": "^5.3.11",
7373
"tiny-async-pool": "^2.0.1",
74-
"typescript": "^5.6.3"
74+
"typescript": "^5.9.3"
7575
}
7676
}

packages/big-design-patterns/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@
7878
"react-dom": "^18.2.0",
7979
"rimraf": "^6.0.1",
8080
"styled-components": "^5.3.11",
81-
"typescript": "^5.6.3"
81+
"typescript": "^5.9.3"
8282
}
8383
}

packages/big-design-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@
6565
"react": "^18.2.0",
6666
"react-dom": "^18.2.0",
6767
"styled-components": "^5.3.11",
68-
"typescript": "^5.6.3"
68+
"typescript": "^5.9.3"
6969
}
7070
}

packages/big-design/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@
8585
"react": "^18.2.0",
8686
"react-dom": "^18.2.0",
8787
"styled-components": "^5.3.11",
88-
"typescript": "^5.6.3"
88+
"typescript": "^5.9.3"
8989
}
9090
}

packages/big-design/src/components/ButtonGroup/spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ test('dropdown item on click callback receives synthetic event', async () => {
118118
// accessibility name is an empty string if the element is hidden
119119
const button = await screen.findByRole('button', {
120120
name: (_, element) => {
121-
return Boolean(element.textContent?.match(/button 4/i));
121+
return Boolean(/button 4/i.exec(element.textContent ?? ''));
122122
},
123123
hidden: true,
124124
});

packages/big-design/src/components/TableNext/spec.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1579,6 +1579,7 @@ describe('draggable', () => {
15791579

15801580
beforeEach(() => {
15811581
onRowDrop = jest.fn();
1582+
onExpandedChange = jest.fn();
15821583
items = [
15831584
{
15841585
sku: 'SM13',

packages/configs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"dependencies": {
77
"@bigcommerce/eslint-config": "^2.12.0",
88
"eslint": "^8.33.0",
9-
"typescript": "^5.6.3"
9+
"typescript": "^5.9.3"
1010
}
1111
}

packages/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@
4848
"eslint-plugin-mdx": "^3.6.2",
4949
"jsx-to-string-loader": "^1.2.0",
5050
"next": "^15.5.0",
51-
"typescript": "^5.6.3"
51+
"typescript": "^5.9.3"
5252
}
5353
}

packages/examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@types/react-dom": "18.2.23",
2727
"@types/styled-components": "5.1.34",
2828
"@vitejs/plugin-react": "4.3.4",
29-
"typescript": "5.6.3",
29+
"typescript": "5.9.3",
3030
"vite": "7.2.2"
3131
}
3232
}

0 commit comments

Comments
 (0)