我正在尝试使用 URL 安装 Bower 的依赖项。根据 Bower 文档:
Bower 提供了几种安装软件包的方法:
# Using the dependencies listed in the current directory's bower.json
bower install
# Using a local or remote package
bower install <package>
# Using a specific version of a package
bower install <package>#<version>
# Using a different name and a specific version of a package
bower install <name>=<package>#<version>
其中
<package>
可以是以下任何一种:git://github.com/someone/some-package.git
。可以是公共(public)的或私有(private)的。
someone/some-package
(默认为 GitHub)。 其内容将被提取。
但是,然后它说,除 URL 之外的所有类型都允许指定版本。
如何为 URL 下载的依赖项指定版本?
最佳答案
使用 git 端点而不是包名:
bower install https://github.com/jquery/jquery.git#2.0.3
关于bower - 从 URL 安装 Bower 依赖项并指定版本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19348076/