1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jellyfin-vue_ynh.git synced 2024-09-03 19:26:31 +02:00

Merge pull request #22 from YunoHost-Apps/testing

Testing
This commit is contained in:
eric_G 2023-11-03 20:12:44 +01:00 committed by GitHub
commit ae943d11d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
# COMMON VARIABLES
#=================================================
nodejs_version=18
nodejs_version=20
#=================================================
# PERSONAL HELPERS
@ -24,12 +24,12 @@ _npm_build_install() {
targetdir=$2
subpath=$3
pushd "$sourcedir" || ynh_die "Could not pushd $sourcedir"
ynh_use_nodejs
ynh_use_nodejs
pushd "$sourcedir/frontend" || ynh_die "Could not pushd $sourcedir/frontend"
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" \
"$ynh_npm" install
"$ynh_npm" ci --no-audit --ignore-scripts
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" \
"$ynh_npm" run build -- --base="$subpath/"
"$ynh_npm" run build
popd || ynh_die "Could not popd"
mv "$sourcedir/frontend/dist" "$targetdir"