Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ export const SchemaExtractionWatchModeTrace = defineTrace<SchemaExtractionWatchM
export const SchemaDeploy = defineTrace<SchemaDeployTraceData>({
description:
'Schema deploy action was executed, either via sanity schema deploy or as sanity deploy',
name: 'Schema deploy action executed',
name: 'Schema Deployed',
version: 1,
})
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"lint": {},
"publint": {
"dependsOn": ["^build:types", "^publint"],
"dependsOn": ["build:types", "^build:types", "^publint"],
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated turbo.json build config change in rename PR

Low Severity

The publint task's dependsOn now includes same-package "build:types" (without ^ prefix), in addition to the existing "^build:types". This build pipeline change is unrelated to the stated PR goal of renaming a telemetry event. It was likely introduced during Copilot's automated merge conflict resolution and may not have been intentionally reviewed.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b664eb6. Configure here.

"cache": false
},
"dev": {
Expand Down
Loading