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 包
参数
属性
示例
- 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