-
-
Notifications
You must be signed in to change notification settings - Fork 155
Open
Labels
Description
Related to #311
Since https://github.com/friendica/friendica already has the npm-asset/jquery:^1.11.4
dependency and we are using the same asset directory for both repositories, I tried importing bower-asset/jquery-2.x
to satisfy a new Bower dependency.
However, Bower went on and still installed bower-asset/jquery:^3.3
which overwrote /vendor/asset-folder/jquery
.
How can I direct bower to use the versioned dependency for subsequent imports?
It could look something like:
{
"config": {
"fxp-asset": {
"satisfies": {
"bower-asset/jquery-2.x": "bower-asset/jquery"
}
}
}
}