From cb776e7cd59a0e3022b1d78be11af3cbe7c0ec9a Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sun, 23 Mar 2025 14:47:28 +0100 Subject: [PATCH] The yarn module is Yarn Classic only at the moment (#9926) The yarn module is Yarn Classic only. --- plugins/modules/yarn.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/modules/yarn.py b/plugins/modules/yarn.py index 969b199834..553e789e89 100644 --- a/plugins/modules/yarn.py +++ b/plugins/modules/yarn.py @@ -16,6 +16,7 @@ module: yarn short_description: Manage Node.js packages with Yarn description: - Manage Node.js packages with the Yarn package manager U(https://yarnpkg.com/). + - Note that at the moment, this module B(only works with Yarn Classic). author: - "David Gunter (@verkaufer)" - "Chris Hoffman (@chrishoffman), creator of NPM Ansible module)" @@ -84,7 +85,7 @@ options: default: present choices: ["present", "absent", "latest"] requirements: - - Yarn installed in bin path (typically C(/usr/local/bin)) + - Yarn Classic installed in bin path (typically C(/usr/local/bin)) """ EXAMPLES = r"""