Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add "`" as valid quotes
To be a bit more correct and consistent with the `addEventListener`
approach.
  • Loading branch information
RobinMalfait committed Aug 11, 2025
commit 67586f870ea7b7b832b28648c1a1991b58403b36
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const CONDITIONAL_TEMPLATE_SYNTAX = [
/x-show=['"]$/,
/wire:[^\s]*?$/,
]
const NEXT_PLACEHOLDER_PROP = /placeholder=\{?['"]$/
const VUE_3_EMIT = /\b\$?emit\(['"]$/
const NEXT_PLACEHOLDER_PROP = /placeholder=\{?['"`]$/
const VUE_3_EMIT = /\b\$?emit\(['"`]$/

export function isSafeMigration(
rawCandidate: string,
Expand Down