-
Notifications
You must be signed in to change notification settings - Fork 104
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
Incompatibility with Windows #20
Comments
Hey @GCinellu Unfortunately when typing According to the docs npm 3 won't have these issues:
https://docs.npmjs.com/files/package.json I'm happy to merge any pull-request that improves the situation, but for now I'm not sure how. |
@nikgraf I would just remove |
It still had more issues, I tried running belle on windows box 2 days back. Need to spend more time to fix that :) |
Yes, looking at the |
You are right We also had some troubles with some babel configurations like this '--optional='es7.classProperties'' on windows. |
Fixed the @blakeembrey thanks a lot for pointing that out. I missed that postinstall also runs when people do |
@GCinellu We fixed the Windows issues 😄 |
Running
npm install belle
on Windows 8.1, I get the following error:
545 error Windows_NT 6.3.9600
546 error argv "C:\Program Files (x86)\nodejs\node.exe" "C:\Program Files (x86)\nodejs\node_modules\npm\bin\npm-cli.js" "install" "belle"
547 error node v0.12.2
548 error npm v2.7.4
549 error code ELIFECYCLE
550 error belle@0.0.17 postinstall:
rm -rf node_modules/react/ && rm -rf node_modules/underscore/
550 error Exit status 1
551 error Failed at the belle@0.0.17 postinstall script 'rm -rf node_modules/react/ && rm -rf node_modules/underscore/'.
551 error This is most likely a problem with the belle package,
551 error not with npm itself.
551 error Tell the author that this fails on your system:
551 error rm -rf node_modules/react/ && rm -rf node_modules/underscore/
551 error You can get their info via:
551 error npm owner ls belle
551 error There is likely additional logging output above.
Apparently, as for line 551, it tries to execute this command :
rm -rf node_modules/react/ && rm -rf node_modules/underscore/
which of course is not valid on Windows.
Have anyone had better luck installing it?
The text was updated successfully, but these errors were encountered: