community.general.bower 模块 – 使用 bower 管理 bower 包
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。
要在 playbook 中使用它,请指定:community.general.bower
。
概要
使用 bower 管理 bower 包
参数
参数 |
注释 |
---|---|
要安装的 bower 包的名称 |
|
如果之前安装过包,则从本地缓存安装包 选项
|
|
安装 bower 包的基本路径 |
|
使用 --production 标志安装 选项
|
|
相对于安装路径的 bower 可执行文件的相对路径 |
|
bower 包的状态 选项
|
|
要安装的版本 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持:不支持 |
可以在 |
|
支持:不支持 |
在差异模式下,将返回有关更改内容(或可能需要在 |
示例
- name: Install "bootstrap" bower package.
community.general.bower:
name: bootstrap
- name: Install "bootstrap" bower package on version 3.1.1.
community.general.bower:
name: bootstrap
version: '3.1.1'
- name: Remove the "bootstrap" bower package.
community.general.bower:
name: bootstrap
state: absent
- name: Install packages based on bower.json.
community.general.bower:
path: /app/location
- name: Update packages based on bower.json to their latest version.
community.general.bower:
path: /app/location
state: latest
# install bower locally and run from there
- npm:
path: /app/location
name: bower
global: false
- community.general.bower:
path: /app/location
relative_execpath: node_modules/.bin