We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Running yarn install on a node project that depends on cambria results in this error:
yarn install
error /Users/geoffreylitt/dev/arthropod2/arthropod/node_modules/cambria: Command failed. Exit code: 127 Command: yarn run build Arguments: Directory: /Users/geoffreylitt/dev/arthropod2/arthropod/node_modules/cambria Output: yarn run v1.17.3 $ tsc --outDir ./dist
The problem is that we don't install dependencies before attempting to run yarn run build in the post-install hook.
yarn run build
Options:
yarn install && yarn run build
&&
I think this won't be a problem once we publish to npm -- I think we can publish dist to npm without putting it in source control.
The text was updated successfully, but these errors were encountered:
actually seems like && may be windows friendly, so I think I'm just going to use that.
https://stackoverflow.com/questions/39172536/running-npm-scripts-sequentially#comment89082222_39172660
Sorry, something went wrong.
It looks like this issue was fixed that same day in f935be5 and can be closed?
geoffreylitt
No branches or pull requests
Running
yarn install
on a node project that depends on cambria results in this error:The problem is that we don't install dependencies before attempting to run
yarn run build
in the post-install hook.Options:
yarn run build
w/ a cross-platform-friendly version ofyarn install && yarn run build
(&&
not windows-friendly)I think this won't be a problem once we publish to npm -- I think we can publish dist to npm without putting it in source control.
The text was updated successfully, but these errors were encountered: