-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"postinstall": "ln -nsf ../src/js node_modules/app" fails when install from npm #13
Comments
it fails for me on Windows, ok on MacOs. |
Epic fail here too, unfortunately not experienced enough with npm/node.js to help debug FYI: OS x86_64 Linux Arch (Manjaro) Seems like the post-install script/line in the json file tries to create a symlink to a non-existent file called app. The warning lines don't look very optimistic either. Regressing to Kodelife. output:
ln: failed to create symbolic link 'node_modules/app': No such file or directory |
Yep same issue here, I tried to remove it from local repo and install it with local dependencies, it's installed, but I have some Failed to load resource: net::ERR_FILE_NOT_FOUND I think ln -nsf ../src/js node_modules/app should be ln -nsf ../src/js ../node_modules/app cause they are on the same level. it doesn't occur if I clone the repo, just if I had dependency to an npm project |
so.. this issue be solved? How? |
"postinstall": "ln -nsf ../src/js node_modules/app" fails when install from npm . What is the purpose of this? Can it just be removed?
The text was updated successfully, but these errors were encountered: