sftp-push-sync 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -76,13 +76,13 @@ If you have stored the scripts in `package.json` as follows:
76
76
  ```json
77
77
 
78
78
  "scripts": {
79
- "sync:staging": "node sftp-push-sync staging",
80
- "sync:staging:dry": "node sftp-push-sync staging --dry-run",
79
+ "sync:staging": "sftp-push-sync staging",
80
+ "sync:staging:dry": "sftp-push-sync staging --dry-run",
81
81
  "ss": "npm run sync:staging",
82
82
  "ssd": "npm run sync:staging:dry",
83
83
 
84
- "sync:prod": "node sftp-push-sync prod",
85
- "sync:prod:dry": "node sftp-push-sync prod --dry-run",
84
+ "sync:prod": "sftp-push-sync prod",
85
+ "sync:prod:dry": "sftp-push-sync prod --dry-run",
86
86
  "sp": "npm run sync:prod",
87
87
  "spd": "npm run sync:prod:dry",
88
88
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sftp-push-sync",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "SFTP sync tool for Hugo projects (local to remote, with hash cache)",
5
5
  "type": "module",
6
6
  "bin": {