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