Package Details: s3uploader 0.2.0-1.4

Git Clone URL: https://aur.archlinux.org/s3uploader.git (read-only, click to copy)
Package Base: s3uploader
Description: A minimalistic electron-based UI to conveniently upload and download files from AWS S3
Upstream URL: https://github.com/Yamazaki93/S3Uploader
Keywords: aws electron files s3
Licenses: MIT
Submitter: jamezrin
Maintainer: jamezrin
Last Packager: jamezrin
Votes: 1
Popularity: 0.000000
First Submitted: 2020-01-12 23:48 (UTC)
Last Updated: 2020-10-23 19:04 (UTC)

Dependencies (2)

Required by (0)

Sources (2)

Latest Comments

jamezrin commented on 2020-10-23 19:05 (UTC)

@max2320 thank you so much, I didn't realize that I was relying on my global dependencies.

max2320 commented on 2020-10-23 16:11 (UTC)

I found some issues with the build scripts requiring the installation of the ng and electron-builder globally. I'd recommend using the yarn run to run these commands inside the project context.

# PKGBUILD
build() {
    cd ${srcdir}/${pkgname}

    yarn
    yarn run build-prod

    cd app/frontend
    yarn
    yarn ng config -g cli.warnings.versionMismatch false
    yarn ng build --prod --aot=false --build-optimizer=false

    cd ../..
    mkdir -p dist/frontend
    cp -ar app/frontend/dist dist/frontend/dist

    yarn electron-builder --linux
}

Btw these changes fixed the build for me.