From 9c4be54625a37568a907f762ff8c8b8cc8ef2b2a Mon Sep 17 00:00:00 2001 From: curry9999 Date: Wed, 8 Aug 2018 05:07:35 +0900 Subject: [PATCH] To improve readability, we added a line feed. (#43764) * A line break was added. +label: docsite_pr * "blank line contains whitespace" was fixed. --- lib/ansible/modules/packaging/language/yarn.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ansible/modules/packaging/language/yarn.py b/lib/ansible/modules/packaging/language/yarn.py index cd1a234a327..6a4ecba471e 100644 --- a/lib/ansible/modules/packaging/language/yarn.py +++ b/lib/ansible/modules/packaging/language/yarn.py @@ -83,27 +83,33 @@ EXAMPLES = ''' yarn: name: imagemin path: /app/location + - name: Install "imagemin" node.js package on version 5.3.1 yarn: name: imagemin version: '5.3.1' path: /app/location + - name: Install "imagemin" node.js package globally. yarn: name: imagemin global: yes + - name: Remove the globally-installed package "imagemin". yarn: name: imagemin global: yes state: absent + - name: Install "imagemin" node.js package from custom registry. yarn: name: imagemin registry: 'http://registry.mysite.com' + - name: Install packages based on package.json. yarn: path: /app/location + - name: Update all packages in package.json to their latest version. yarn: path: /app/location