community.general.bower module – Manage bower packages with bower
Note
This module is part of the community.general collection (version 10.7.5).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.general.
To use it in a playbook, specify: community.general.bower.
Synopsis
- Manage bower packages with - bower.
Parameters
| Parameter | Comments | 
|---|---|
| The name of a bower package to install. | |
| Install packages from local cache, if the packages were installed before. Choices: 
 | |
| The base path where to install the bower packages. | |
| Install with  Choices: 
 | |
| Relative path to bower executable from install path. | |
| The state of the bower package. Choices: 
 | |
| The version to be installed. | 
Attributes
| Attribute | Support | Description | 
|---|---|---|
| Support: none | Can run in  | |
| Support: none | Will return details on what has changed (or possibly needs changing in  | 
Examples
- 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
