Uh oh!
There was an error while loading. Please reload this page.
refactor: migrate to vite-plus - #102
Conversation
Deploying with |
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs | auth | a98d00c | Commit Preview URL Branch Preview URL | Aug 03 2026, 05:25 PM |
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Warning Review the following alerts detected in dependencies. According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.
|
There was a problem hiding this comment.
1 issue found and verified against the latest diff
Confidence score: 5/5
- In
pnpm-workspace.yaml, keeping bothpeerDependencyRules.allowedVersionsfor vite andpeerDependencyRules.allowAnycreates redundant policy that can confuse future dependency maintenance without changing behavior—removeallowedVersions: { vite: '*' }and keepallowAnyonly.
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="pnpm-workspace.yaml">
<violation number="1" location="pnpm-workspace.yaml:28">
P3: `peerDependencyRules.allowedVersions` for vite is redundant with `peerDependencyRules.allowAny` — both already allow any version of vite as a peer dependency. Drop `allowedVersions: { vite: '*' }` and keep only `allowAny: [vite]`, which is the cleaner path for blanket permission. If you later want a tighter range to surface unexpected version conflicts, swap to `allowedVersions` alone instead.</violation>
</file>
Heads up: you’re close to your included review allowance. Set a flex budget so reviews don’t pause.
Re-trigger cubic
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
| peerDependencyRules: | ||
| allowAny: | ||
| - vite | ||
| allowedVersions: |
There was a problem hiding this comment.
P3: peerDependencyRules.allowedVersions for vite is redundant with peerDependencyRules.allowAny — both already allow any version of vite as a peer dependency. Drop allowedVersions: { vite: '*' } and keep only allowAny: [vite], which is the cleaner path for blanket permission. If you later want a tighter range to surface unexpected version conflicts, swap to allowedVersions alone instead.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At pnpm-workspace.yaml, line 28:
<comment>`peerDependencyRules.allowedVersions` for vite is redundant with `peerDependencyRules.allowAny` — both already allow any version of vite as a peer dependency. Drop `allowedVersions: { vite: '*' }` and keep only `allowAny: [vite]`, which is the cleaner path for blanket permission. If you later want a tighter range to surface unexpected version conflicts, swap to `allowedVersions` alone instead.</comment>
<file context>
@@ -18,3 +18,23 @@ allowBuilds:
+peerDependencyRules:
+ allowAny:
+ - vite
+ allowedVersions:
+ vite: '*'
+minimumReleaseAgeExclude:
</file context>
Uh oh!
There was an error while loading. Please reload this page.
No description provided.