You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because fsevents is not available for windows the installation process is hanging after installing sass-loader.
All the binaries are created in my project folder
APEX Nitro Version
v5.02
Operating System
Windows 10
Node Version
14.15.0
Browser
Chrome
APEX Version
20.1
Web Server
Autonomous cloud
Project configuration screenshot
The text was updated successfully, but these errors were encountered:
Investigated further. This problem is caused by function installPackage in npm-service.js.
Argument packagePath is defaulted with "./" which results in calling npm install with --prefix ./. This prevents using node_modules.bin as script directory. All scripts are installed in the current directory. This causes my problems. I removed the default and changed await fs.ensureDir(packagePath); in if (packagePath) await fs.ensureDir(packagePath); this will do the trick.
Issue Description
Because fsevents is not available for windows the installation process is hanging after installing sass-loader.
All the binaries are created in my project folder
APEX Nitro Version
v5.02
Operating System
Windows 10
Node Version
14.15.0
Browser
Chrome
APEX Version
20.1
Web Server
Autonomous cloud
Project configuration screenshot
The text was updated successfully, but these errors were encountered: