-
Notifications
You must be signed in to change notification settings - Fork 64
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
Accept local coffee installs #216
Comments
You could define an absolute path to the binary on a per-project basis, so you could have one default For instance, for the project
{
"folders":
[
{
"follow_symlinks": true,
"path": "."
}
],
"settings":
{
"CoffeeScript":
{
"binDir": "/users/markalfred/repos/sublime-better-coffeescript/node_modules/.bin"
}
}
} This should override your global |
yes, this worked |
no, this is still not good enough. it should accept relative paths:
because the .sublime-project file is shared among developers and everyone has a different absolute path. and |
Currently that plugin won't work with local coffee binaries, located inside
node_modules/bin
of your project.In
CoffeeScript.sublime-settings
I added that line"binDir": "node_modules/.bin",
yet, I get the errorFileNotFoundError: [Errno 2] No such file or directory: 'coffee'
. Do I really have to npm-install coffee globally?The text was updated successfully, but these errors were encountered: