feat!: replace rsyncwrapper with direct child_process.spawn#209
Merged
easingthemes merged 8 commits intomainfrom Apr 2, 2026
Merged
feat!: replace rsyncwrapper with direct child_process.spawn#209easingthemes merged 8 commits intomainfrom
easingthemes merged 8 commits intomainfrom
Conversation
Remove the outdated rsyncwrapper dependency (unmaintained, uses deprecated util._extend) and replace with a built-in buildRsyncCommand() + spawn implementation. Zero runtime dependencies. BREAKING CHANGE: rsyncwrapper dependency removed, rsync command is now constructed and executed directly via child_process.spawn. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- actions/checkout v4 → v6 - actions/setup-node v4 → v6 - cycjimmy/semantic-release-action v4 → v6 (pinned semantic_version: 24) - github/codeql-action v3 → v4 - actions/stale v9 (already latest) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Adds update-major-tag.yml that triggers on any published release and force-updates the major version tag (e.g., v6) to point to the latest release (e.g., v6.0.1). Enables users to pin to @v6 instead of full version numbers. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add src/rsync.js as a drop-in replacement for rsyncwrapper, using child_process.spawn directly. Only implements the options this project uses. Single line change in rsyncCli.js to swap the import. BREAKING CHANGE: rsyncwrapper dependency removed, rsync command is now constructed and executed via a local module using child_process.spawn. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
rsyncwrapperdependency (unmaintained, uses deprecatedutil._extend)buildRsyncCommand()+child_process.spawnimplementation--rshSSH transport,--excludepatterns, arg deduplicationBREAKING CHANGE
rsyncwrapperdependency removed. The rsync command is now constructed and executed directly. External action API (inputs/outputs) is unchanged.Test plan
npm run buildsucceeds (lint + ncc bundle)dist/index.jscontains no rsyncwrapper code