From f2b2b233b538f500472c7274c7012f57857d8ce0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 10 Jul 2025 18:08:35 -0400 Subject: [PATCH] Remove --frozen-lockfile from examples (#171) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 730bd97..73212a4 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ If `run_install` is a YAML string representation of either an object or an array #### `run_install.args` -**Optional** (_type:_ `string[]`) Additional arguments after `pnpm [recursive] install`, e.g. `[--frozen-lockfile, --strict-peer-dependencies]`. +**Optional** (_type:_ `string[]`) Additional arguments after `pnpm [recursive] install`, e.g. `[--ignore-scripts, --strict-peer-dependencies]`. ### `package_json_file` @@ -119,7 +119,7 @@ jobs: version: 10 run_install: - recursive: true - args: [--frozen-lockfile, --strict-peer-dependencies] + args: [--strict-peer-dependencies] - args: [--global, gulp, prettier, typescript] ```