From 4a67be413538890545aa6cc302c04bb1359055dc Mon Sep 17 00:00:00 2001 From: AenEnlil Date: Wed, 22 Apr 2026 09:23:29 +0300 Subject: [PATCH] auto-update ids for push command --- bin/check.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/check.js b/bin/check.js index 01832279..7cf553d1 100755 --- a/bin/check.js +++ b/bin/check.js @@ -264,7 +264,7 @@ program .action(async opts => { // Alias: call main action with 'manual' framework and '**/**.md' files const globalOpts = program.opts(); - const mergedOpts = { ...globalOpts, ...opts }; + const mergedOpts = { ...globalOpts, ...opts, updateIds: true }; await mainAction('manual', '**/**.md', mergedOpts); });