Skip to content
Merged
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
2 changes: 1 addition & 1 deletion scripts/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function publishToVsce(): boolean {
try {
const packagePath = getExtensionPackagePath(target)
logger.info(`Publishing to VSCE for target ${target}...`)
const command = `pnpm -F vscode-naily-ets vsce publish --target ${target} --packagePath ${packagePath}`
const command = `pnpm -F vscode-naily-ets vsce publish --packagePath ${packagePath}`
Copy link

Copilot AI Jan 21, 2026

Choose a reason for hiding this comment

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

The removal of --target ${target} from the vsce publish command creates an inconsistency with the publishToOvsce() function on line 72, which still includes --target ${target}. Both functions iterate over the same EXTENSION_TARGETS and use target-specific packages. If the target flag is redundant or causing issues for vsce, consider whether the same applies to ovsx, or document why they differ.

Copilot uses AI. Check for mistakes.
logger.info(`Executing command: ${command}`)
execSync(command, { cwd: path.resolve(dirname, '..'), stdio: 'inherit' })
}
Expand Down
Loading