From 77b8cbcfc28690d98e85109951b783a70e1e7986 Mon Sep 17 00:00:00 2001 From: vamsi gutta Date: Mon, 23 Feb 2026 07:08:38 -0800 Subject: [PATCH] fix: rename accountProtectionRuleSequence.js to lowercase (fixes #58) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On case-sensitive filesystems (Linux), Node.js cannot resolve the module because the require path is all-lowercase but the filename is camelCase: require('../../src/accountprotectionrulesequence') → src/accountProtectionRuleSequence.js (not found on Linux) This affects two command files: - bin/commands/accountprotectionruleSequence.js - bin/commands/accountprotectionrulesequence.modify.js Both require '../../src/accountprotectionrulesequence' (lowercase), so renaming the source file to match fixes the issue. All other files in src/ already follow the all-lowercase convention. This was the only file introduced with camelCase (v3.3.0, commit e6afe3e). --- ...ProtectionRuleSequence.js => accountprotectionrulesequence.js} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/{accountProtectionRuleSequence.js => accountprotectionrulesequence.js} (100%) diff --git a/src/accountProtectionRuleSequence.js b/src/accountprotectionrulesequence.js similarity index 100% rename from src/accountProtectionRuleSequence.js rename to src/accountprotectionrulesequence.js