10
从URL使用Bower安装依赖项并指定版本
我正在尝试使用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> …
154
bower