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

字符串

要安装的 bower 包的名称

offline

布尔值

如果之前安装过包,则从本地缓存安装包

选项

  • false ← (默认)

  • true

path

路径 / 必需

安装 bower 包的基本路径

production

布尔值

使用 --production 标志安装

选项

  • false ← (默认)

  • true

relative_execpath

path

相对于安装路径的 bower 可执行文件的相对路径

state

字符串

bower 包的状态

选项

  • "present" ← (默认)

  • "absent"

  • "latest"

version

字符串

要安装的版本

属性

属性

支持

描述

check_mode

支持:不支持

可以在 check_mode 下运行并返回更改状态预测,而无需修改目标。

diff_mode

支持:不支持

在差异模式下,将返回有关更改内容(或可能需要在 check_mode 下更改的内容)的详细信息。

示例

- 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

作者

  • Michael Warkentin (@mwarkentin)