From d380165817a08e8958ba0fbab011b4366ae4a2f8 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 10 Jul 2025 15:35:43 -0400 Subject: [PATCH] Remove unused recursive option from README --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 730bd977..94654e79 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,6 @@ If `run_install` is `true`, pnpm will install dependencies recursively. If `run_install` is a YAML string representation of either an object or an array, pnpm will execute every install commands. -#### `run_install.recursive` - -**Optional** (_type:_ `boolean`, _default:_ `false`) Whether to use `pnpm recursive install`. - #### `run_install.cwd` **Optional** (_type:_ `string`) Working directory when run `pnpm [recursive] install`. @@ -118,8 +114,7 @@ jobs: with: version: 10 run_install: - - recursive: true - args: [--frozen-lockfile, --strict-peer-dependencies] + - args: [--frozen-lockfile, --strict-peer-dependencies] - args: [--global, gulp, prettier, typescript] ```