Fixed missing vendor js compile

canary
WolverinDEV 2020-04-04 11:28:52 +02:00
parent 6d7456093d
commit 15bacdc9d6
2 changed files with 8 additions and 0 deletions

View File

@ -63,6 +63,13 @@ if [[ $_exit_code -ne 0 ]]; then
exit 1 exit 1
fi fi
echo "Compile vendor emoji-picker"
execute_tsc ./vendor/emoji-picker/src/jquery.lsxemojipicker.ts
if [[ $_exit_code -ne 0 ]]; then
echo "Failed to build the emoji-picker vendor"
exit 1
fi
if [[ "$build_type" == "release" ]]; then # Compile everything for release mode if [[ "$build_type" == "release" ]]; then # Compile everything for release mode
echo "Packing generated css files" echo "Packing generated css files"
chmod +x ./shared/css/generate_packed.sh chmod +x ./shared/css/generate_packed.sh

View File

@ -263,6 +263,7 @@ export class CommandHelper extends AbstractCommandHandler {
} }
request_playlist_songs(playlist_id: number) : Promise<PlaylistSong[]> { request_playlist_songs(playlist_id: number) : Promise<PlaylistSong[]> {
//FIXME: notifyplaylistsonglistfinish for the result!
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
const single_handler: SingleCommandHandler = { const single_handler: SingleCommandHandler = {
command: "notifyplaylistsonglist", command: "notifyplaylistsonglist",