Skip to content

Commit f1a54e0

Browse files
Bump typescript from 5.7.3 to 5.8.2 (#14037)
* Bump typescript from 5.7.3 to 5.8.2 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.7.3 to 5.8.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](microsoft/TypeScript@v5.7.3...v5.8.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Remove assertion [dependabot skip] --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pascal Birchler <[email protected]>
1 parent 2ebbd50 commit f1a54e0

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

package-lock.json

+20-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
"stylelint-prettier": "^5.0.3",
179179
"stylis-plugin-rtl": "^1.0.0",
180180
"terser-webpack-plugin": "^5.3.14",
181-
"typescript": "^5.7.3",
181+
"typescript": "^5.8.2",
182182
"webpack": "^5.98.0",
183183
"webpack-bundle-analyzer": "^4.10.2",
184184
"webpack-cli": "^6.0.1",

packages/story-editor/src/utils/copyPaste.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function processPastedElements(
5858
animations: [],
5959
elements: [],
6060
};
61-
for (let n = content.firstChild; n; n = (n as ChildNode).nextSibling) {
61+
for (let n = content.firstChild; n; n = n.nextSibling) {
6262
if (
6363
n.nodeType !== /* COMMENT */ 8 ||
6464
n.nodeValue?.indexOf('Fragment') !== -1

0 commit comments

Comments
 (0)