-
Notifications
You must be signed in to change notification settings - Fork 925
Update dependencies #9561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update dependencies #9561
Conversation
|
b770778
to
5346446
Compare
create-cloudflare
@cloudflare/kv-asset-handler
miniflare
@cloudflare/pages-shared
@cloudflare/unenv-preset
@cloudflare/vite-plugin
@cloudflare/vitest-pool-workers
@cloudflare/workers-editor-shared
wrangler
commit: |
@@ -20,7 +20,7 @@ | |||
"jose": "^5.2.2", | |||
"miniflare": "workspace:*", | |||
"run-script-os": "^1.1.6", | |||
"toucan-js": "3.4.0", | |||
"toucan-js": "3.3.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This intentionally unifies toucan versions across the repo
@@ -706,6 +706,7 @@ describe("init", () => { | |||
}); | |||
} | |||
|
|||
// @ts-expect-error this is fine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This an MSW types incompatibility, but I'm pretty sure it should work fine at runtime in tests. I imagine it'll likely be solved by upgrading the MSW version, but I wanted to reduce the complexities in this PR.
@@ -380,7 +380,7 @@ describe("versions secret put", () => { | |||
), | |||
"module.wasm" | |||
); | |||
|
|||
// @ts-expect-error this is fine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This an MSW types incompatibility, but I'm pretty sure it should work fine at runtime in tests. I imagine it'll likely be solved by upgrading the MSW version, but I wanted to reduce the complexities in this PR.
@@ -104,6 +104,7 @@ function mockGetVersionContent() { | |||
}), | |||
"index.js" | |||
); | |||
// @ts-expect-error this is fine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As above
951a30b
to
1d7c8fb
Compare
@@ -74,7 +74,8 @@ | |||
"@types/react-transition-group>@types/react": "^18", | |||
"@cloudflare/elements>@types/react": "^18", | |||
"@types/node": "$@types/node", | |||
"vitest>vite": "^5.0.0" | |||
"vitest>vite": "^5.0.0", | |||
"prebuild-install>tar-fs": "2.1.3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pnpm
is not resolving this correctly for some reason without this override. 2.1.3 is valid according to the package.json of prebuild-install
Update various deps:
vsce
depended ontar-fs
. I removed it rather than updatingvsce
because it was already on the roadmap to remove this code (cc @lrapoport-cf)