Skip to content

Commit

Permalink
chore(deps): update gatsby monorepo (#38014)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lennart <lekoarts@gmail.com>
  • Loading branch information
renovate[bot] and LekoArts committed May 2, 2023
1 parent 9d90399 commit ee0797c
Show file tree
Hide file tree
Showing 4 changed files with 407 additions and 403 deletions.
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -15,20 +15,20 @@
"@types/common-tags": "^1.8.1",
"@types/fs-extra": "^9.0.13",
"@types/jaeger-client": "^3.18.4",
"@types/jest": "^29.4.0",
"@types/jest": "^29.5.1",
"@types/joi": "^14.3.4",
"@types/lodash": "^4.14.191",
"@types/lodash": "^4.14.194",
"@types/node": "^12.20.55",
"@types/node-fetch": "^2.6.2",
"@types/node-fetch": "^2.6.3",
"@types/normalize-path": "^3.0.0",
"@types/react": "^18.0.27",
"@types/react": "^18.2.0",
"@types/semver": "^7.3.13",
"@types/signal-exit": "^3.0.1",
"@types/stack-trace": "^0.0.30",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"babel-jest": "^29.4.1",
"babel-jest": "^29.5.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
Expand All @@ -48,9 +48,9 @@
"glob": "^7.2.3",
"husky": "3.1.0",
"ignore": "^5.2.4",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-extended": "^3.2.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^3.2.4",
"jest-junit": "^15.0.0",
"jest-serializer-path": "^0.1.15",
"jest-silent-reporter": "^0.5.0",
Expand Down
Expand Up @@ -80,49 +80,49 @@ Object {
"columnNumber": 28,
"fileName": "<PROJECT_ROOT>/node_modules/jest-circus/build/utils.js",
"functionName": "Promise.then.completed",
"lineNumber": 290,
"lineNumber": 293,
},
Object {
"columnNumber": 10,
"fileName": "<PROJECT_ROOT>/node_modules/jest-circus/build/utils.js",
"functionName": "callAsyncCircusFn",
"lineNumber": 223,
"lineNumber": 226,
},
Object {
"columnNumber": 40,
"fileName": "<PROJECT_ROOT>/node_modules/jest-circus/build/run.js",
"functionName": "_callCircusTest",
"lineNumber": 248,
"lineNumber": 297,
},
Object {
"columnNumber": 3,
"fileName": "<PROJECT_ROOT>/node_modules/jest-circus/build/run.js",
"functionName": "_runTest",
"lineNumber": 184,
"lineNumber": 233,
},
Object {
"columnNumber": 9,
"fileName": "<PROJECT_ROOT>/node_modules/jest-circus/build/run.js",
"functionName": "_runTestsForDescribeBlock",
"lineNumber": 86,
"lineNumber": 135,
},
Object {
"columnNumber": 9,
"fileName": "<PROJECT_ROOT>/node_modules/jest-circus/build/run.js",
"functionName": "_runTestsForDescribeBlock",
"lineNumber": 81,
"lineNumber": 130,
},
Object {
"columnNumber": 3,
"fileName": "<PROJECT_ROOT>/node_modules/jest-circus/build/run.js",
"functionName": "run",
"lineNumber": 26,
"lineNumber": 68,
},
Object {
"columnNumber": 21,
"fileName": "<PROJECT_ROOT>/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapterInit.js",
"functionName": "runAndTransformResultsToJestFormat",
"lineNumber": 120,
"lineNumber": 122,
},
Object {
"columnNumber": 19,
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-script/src/gatsby-script.tsx
Expand Up @@ -228,7 +228,7 @@ function injectScript(props: ScriptProps): IInjectedScriptDetails | null {
function resolveInlineScript(props: ScriptProps): string {
const { dangerouslySetInnerHTML, children = `` } = props || {}
const { __html: dangerousHTML = `` } = dangerouslySetInnerHTML || {}
return dangerousHTML || children
return (dangerousHTML as string) || children
}

function resolveAttributes(props: ScriptProps): Record<string, string> {
Expand Down

0 comments on commit ee0797c

Please sign in to comment.