From f060301c24d713c362bda4b2ffc0967e53c76298 Mon Sep 17 00:00:00 2001 From: chenhang Date: Tue, 9 Jun 2026 13:44:10 +0800 Subject: [PATCH] fix(lock): restore missing snapshots after cherry-pick conflict MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The merge conflict on pnpm-lock.yaml spanned the @rolldown/pluginutils entry, causing git's auto-merge to drop the subsequent @rtsao/scc, @standard-schema/spec, and @swc/helpers snapshot blocks. Also, @rolldown/pluginutils@1.0.1 in HEAD had a dependencies section (tslib) that was mis-resolved as '{}', corrupting the YAML. Re-add the missing snapshot entries to make pnpm install --frozen-lockfile pass. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- pnpm-lock.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8db28203..fef44e53 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3167,7 +3167,15 @@ snapshots: '@rolldown/binding-win32-x64-msvc@1.0.3': optional: true - '@rolldown/pluginutils@1.0.1': {} + '@rolldown/pluginutils@1.0.1': + dependencies: + tslib: 2.8.1 + + '@rtsao/scc@1.1.0': {} + + '@standard-schema/spec@1.1.0': {} + + '@swc/helpers@0.5.15': dependencies: tslib: 2.8.1