-
Notifications
You must be signed in to change notification settings - Fork 8
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
Cannot find 'bower' #5
Comments
Hi @Christewart, the BowerKeys.installDirectory <<= (sourceDirectory in BowerKeys.Bower) (_ / "js" / "myStuffGoesHere") Or simply |
This was very helpful! I'm actually facing a similar issue. I wanted to define my installDirectory like so:
But when I run
I think I've traced that to Line 28 in SbtBowerPlugin.scala, the step where it tries to determine the |
It seems you are using the wrong config. Try using BowerKeys.installDirectory <<= (sourceDirectory in Bower) (_ / "lib") rather than BowerKeys.installDirectory <<= (sourceDirectory) ( _ / "lib" ) |
I am getting an error when I am trying to go through the tutorial saying that sbt cannot find bower on the following line of code:
web/build.sbt:28: error: not found: value Bower
BowerKeys.installDirectory <<= (sourceDirectory in Bower) (_ / "js" / "myStuffGoesHere")
I ran 'sudo npm install bower' in my application directory before running 'sbt compile', so I am not sure why I am getting this error.
The text was updated successfully, but these errors were encountered: