当前位置: 首页 > 面试题库 >

Bower ECONFLICT即使添加分辨率也无法找到适合jquery错误的版本

彭涵衍
2023-03-14
问题内容
"dependencies": { 
  "jquery": "~2.1.4", 
  "angular": "~1.5.0",
  ....
  ....
},
"resolutions": {
  "jquery": "~2.1.4",
  "angular": "~1.5.0"
}

凉亭安装角度平度-保存

Bower angular-peity#缓存https://github.com/projectweekend/angular-
peity.git#0.0.5

bower angular-peity#
针对https://github.com/projectweekend/angular-
peity验证0.0.5
.git# * Bower
peity#缓存https://github.com/benpickles/peity.git#3.2.1
bower
peity#
针对https://github.com/benpickles/peity.git#验证3.2.1 * Bower jquery#〜2.0.3缓存https://github.com/jquery/jquery-
dist.git#2.0.3 Bower
jquery#〜2.0.3针对https://github.com/jquery/jquery验证2.0.3 -dist.git#〜2.0.3
Bower jquery#> =
1.6已缓存https://github.com/jquery/jquery-
dist.git#3.1.1 Bower
jquery#> = 1.6验证3.1.1针对https://github.com/jquery/jquery-
dist.git# > = 1.6 Bower jquery#>
= 1.7缓存的https://github.com/jquery/jquery-dist
.git#3.1.1 bower jquery#> =
1.7针对https://github.com/jquery/jquery-
dist.git# > = 1.7 bower
jquery#1.9.1-3.缓存https:// github验证3.1.1 .com / jquery / jquery-
dist.git#3.1.1 bower
jquery#1.9.1-3针对https://github.com/jquery/jquery-
dist.git#1.9.1验证3.1.1-3
bower jquery #> = 1.4.4缓存的https://github.com/jquery/jquery-
dist.git#3.1.1 Bower
jquery#> =
1.4.4针对https://github.com/jquery/jquery验证3.1.1 -dist.git#> =
1.4.4 Bower jquery#^ 2.0.3缓存https://github.com/jquery/jquery-
dist.git#2.2.4 bower
jquery#^ 2.0.3针对https:// github验证2.2.4 。 com / jquery / jquery-
dist.git# ^ 2.0.3 bower
ECONFLICT无法找到适用于jquery的版本


问题答案:

最好的开始方法是

bower cache clean

之后,当你做

bower install 它会问你

Unable to find a suitable version for jquery, please choose one:
1) jquery#exampleversion1 which resolved to 1.5.3 and is required by demo1
2) jquery#^exampleversion2 which resolved to 1.5.3 and is required by app2    
3) jquery#>.examplegversion3 which resolved to 1.5.3 and is required by app3Test

那么您可以输入!1!2,或任何最适合您的需求。

前缀数字!本质上将解析块添加到bower.json中,但是它将使您对正在发生的事情有更多的控制权,并且可以解决您的问题。



 类似资料:
  • 我需要创建一个以id和值作为资源的ArrayList,这样我将来就可以知道给定图标在哪个id下。不幸的是,我的解决方案遇到了一个问题,如何解决? 我给出了一个错误: 错误:找不到添加(int,int)航路点图标的合适方法。添加(0,R.drawable.ic_point_默认值)

  • Cocos Creator 在设计之初就致力于解决一套资源适配多种分辨率屏幕的问题。简单概括来说,我们通过以下几个部分完成多分辨率适配解决方案: Canvas(画布) 组件随时获得设备屏幕的实际分辨率并对场景中所有渲染元素进行适当的缩放。 Widget(对齐挂件) 放置在渲染元素上,能够根据需要将元素对齐父节点的不同参考位置。 Label(文字) 组件内置了提供各种动态文字排版模式的功能,当文字的

  • Cocos Creator 3D 在整体设计上沿用了 Cocos Creator 一套资源适配多种分辨率屏幕的方案。简单概括来说,我们通过以下几个部分完成多分辨率适配解决方案: Canvas(画布) 组件随时获得设备屏幕的实际分辨率并对场景中所有渲染元素进行适当的缩放。 Widget(对齐挂件) 放置在渲染元素上,能够根据需要将元素对齐父节点的不同参考位置。 Label(文字) 组件内置了提供各种

  • 好的,这里有一个奇怪的问题,我有问题(用gcc btw编译) 下面是用于命令提示的Mandelbrot分形生成器的源代码。我以前做过这项工作,我想加快自己的测试速度,看看我能以多快的速度生成命令提示符中实际生成Mandelbrot分形所需的代码。我经常这样做是为了给自己找点乐子 不管怎样,我遇到了一个新问题,我不太明白问题是什么。当分形呈现时,无论我设置了多少次迭代或什么转义值,它都将始终显示为椭

  • 我在做一个井字游戏。这是代码的一部分,用于检查按下了哪个按钮,并查看该按钮中是否有圆圈或十字架。如果有一个圆圈或十字,那么玩家必须选择另一个按钮。 错误消息: 我得到了这个错误,但不知道哪里错了。 代码:

  • 问题内容: 我是Java的新手,正在尝试为Minecraft制作一个mod,但我不知道如何解决此错误: 这是我的代码: 这是怎么回事,我正在尝试使字符串“ Username”重定向到另一个类。 问题答案: Java编译器告诉您不能构造对象,因为您对构造函数的调用与任何已知的构造函数都不匹配。 具体来说,编译器发现了两个构造函数: 但您致电给: 都不匹配。