-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
bower components not installed automatically from bower.json? #864
Comments
Note here: if yarn were to process |
Further on this: I have a setup with node_modules and bower_components. Upon deleting the |
This is a duplicate of #665 |
If you add the following to package.json, bower install will be called and it works. It is a workaround though:
|
Bower support has been dropped in #1441. |
Do you want to request a feature or report a bug?
Bug
What is the current behavior?
I have a
bower.json
in the root directory of a project alongsidepackage.json
.The
bower.json
contents are:Should Bower support work automatically?
(The
package.json
has apostinstall
script that runsbower install
. I've seen pre/post-install hooks don't currently get run as per #853, but yarn says it supports bower itself so...)If the current behavior is a bug, please provide the steps to reproduce.
rm -rf node_modules bower_components
run
yarn
.node_modules
are populated butbower_components
are not.What is the expected behavior?
yarn reads the
bower.json
and populates thebower_components
folder with bower dependencies.yarn should also track the bower components in its
yarn.lock
file (related: #846)Please mention your node.js, yarn and operating system version.
node 6.2.2
yarn 0.15.1 (installed globally with npm)
bower 1.7.9 (installed globally with npm)
OSX El Capitan
The text was updated successfully, but these errors were encountered: