Skip to content

Commit c6e2516

Browse files
build(deps): bump isbot from 3.8.0 to 5.1.26 (#532)
* build(deps): bump isbot from 3.8.0 to 5.1.26 Bumps [isbot](https://github.com/omrilotan/isbot) from 3.8.0 to 5.1.26. - [Changelog](https://github.com/omrilotan/isbot/blob/main/CHANGELOG.md) - [Commits](omrilotan/isbot@v3.8.0...v5.1.26) --- updated-dependencies: - dependency-name: isbot dependency-version: 5.1.26 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix: imports and typecheck warnings * fix: revert previously removed @ts-expect-error --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Scheidt <[email protected]>
1 parent 8111f1e commit c6e2516

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

app/entry.server.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { PassThrough } from "stream";
33
import { createReadableStreamFromReadable } from "@react-router/node";
44
import { createInstance } from "i18next";
55
import I18NexFsBackend from "i18next-fs-backend";
6-
import isbot from "isbot";
6+
import { isbot } from "isbot";
77
import { renderToPipeableStream } from "react-dom/server";
88
import { I18nextProvider, initReactI18next } from "react-i18next";
99
import { ServerRouter, type EntryContext } from "react-router";

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"i18next-browser-languagedetector": "^7.0.1",
108108
"i18next-fs-backend": "^2.1.1",
109109
"i18next-http-backend": "^3.0.1",
110-
"isbot": "^3.6.12",
110+
"isbot": "^5.1.26",
111111
"lodash.debounce": "^4.0.8",
112112
"lucide-react": "^0.454.0",
113113
"luxon": "^3.5.0",

server/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ async function getBuild() {
8787
const build = viteDevServer
8888
? await viteDevServer.ssrLoadModule('virtual:react-router/server-build')
8989
: // @ts-expect-error - the file might not exist yet but it will
90-
9190
await import('../build/server/index.js')
9291

9392
return { build: build as unknown as ServerBuild, error: null }

0 commit comments

Comments
 (0)