Skip to content

Commit

Permalink
Bumped minor version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eki Baskoro committed Jan 4, 2023
1 parent 93893ed commit 4320099
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "gulp-rsync",
"image": "mcr.microsoft.com/devcontainers/universal:2-linux"
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ gulp.task('deploy', function() {
-e, --rsh=COMMAND specify the remote shell to use
-n, --dry-run perform a trial run with no changes made
-r, --recursive recurse into directories
-R, --relative use relative path names
-t, --times preserve modification times
-u, --update skip files that are newer on the receiver
-v, --verbose increase verbosity
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ module.exports = function(options) {
var config = {
options: {
'a': options.archive,
'n': options.dryrun,
'R': options.relative,
'c': options.incremental,
'd': options.emptyDirectories,
'e': shell,
'n': options.dryrun,
'r': options.recursive && !options.archive,
'R': options.relative,
't': options.times && !options.archive,
'u': options.update,
'v': !options.silent,
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-rsync",
"version": "0.0.8",
"version": "0.1.0",
"description": "Rsync tasks for deploying gulp file structures",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -33,6 +33,6 @@
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.2"
"mocha": "^10.2.0"
}
}

0 comments on commit 4320099

Please sign in to comment.