It might be possible to use nodejs-lts-iron instead of use of nvm? Isn't it smarter?
diff --git a/PKGBUILD b/PKGBUILD
index d0c589b..50502ba 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -27,7 +27,7 @@ optdepends=(
'libdbusmenu-glib: For KDE global menu'
)
makedepends=(
- 'nvm'
+ 'nodejs-lts-iron'
'gulp'
'yarn'
'jq'
@@ -81,32 +81,6 @@ case "$CARCH" in
esac
build() {
- # Deactivate any pre-loaded nvm, and make sure we use our own in the current source directory
- command -v nvm >/dev/null && nvm deactivate && nvm unload
- export NVM_DIR="${srcdir}/.nvm"
- source /usr/share/nvm/init-nvm.sh || [[ $? != 1 ]]
-
- # Install the correct version of NodeJS (read from .nvmrc)
- nvm install $(cat .nvmrc)
- nvm use
-
- # Check if the correct version of node is being used
- nvmrc_version="$(cat .nvmrc)"
- if [[ "$nvmrc_version" != "v"* ]]
- then
- # Add the v prefix, because it seems to be missing in .nvmrc
- echo "Configured .nvmrc version is [$nvmrc_version], adding the v prefix before checking if it matches with the node command."
- nvmrc_version="v$nvmrc_version"
- fi
-
- # Now check if the version matches exactly, or at least starts with the same prefix
- if [[ "$(node --version)" != "$nvmrc_version"* ]]
- then
- echo "Using the wrong version of NodeJS! Expected ["$nvmrc_version"] but using ["$(node --version)"]."
- exit 1
- fi
- echo "Installed version of node ["$(node --version)"] matches required version ["$nvmrc_version"], continuing."
-
# Remove old build
if [ -d "vscode" ]; then
rm -rf vscode* VSCode*
Pinned Comments