The following MWE shows the list piece by piece and each item is alert when displayed and back to normal when the next item is displayed.
How can I add more default overlay specifications to the itemize list? Say, make the text bold and alert as it appears and return to normal when the next item is displayed?
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{itemize}[<+-| alert@+>]
\item Apple
\item Peach
\item Plum
\item Orange
\end{itemize}
\end{frame}
\end{document}
