Skip to content

Commit

Permalink
Version incremented to 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
okunishinishi committed Aug 22, 2015
1 parent 0cc406e commit 8473283
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions filecopy.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
var argx = require('argx'),
async = require('async'),
path = require('path'),
glob = require('glob'),
expandglob = require('expandglob'),
mkdirp = require('mkdirp'),
fs = require('fs');

Expand All @@ -30,7 +30,7 @@ function filecopy(src, dest, options, callback) {
}
async.waterfall([
function (callback) {
async.concatSeries([].concat(src), glob, callback);
expandglob(src, callback);
},
function (src, callback) {
_isExistingDir(dest, function (destIsDir) {
Expand Down
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "filecopy",
"version": "1.0.4",
"version": "1.0.5",
"description": "Copy files.",
"main": "filecopy.js",
"scripts": {
Expand All @@ -27,20 +27,21 @@
},
"homepage": "https://github.com/okunishinishi/node-filecopy#readme",
"dependencies": {
"argx": "^1.1.5",
"async": "^1.4.0",
"argx": "^1.1.6",
"async": "^1.4.2",
"expandglob": "^1.0.0",
"glob": "^5.0.14",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"ape-covering": "^1.0.0",
"ape-releasing": "^1.0.5",
"ape-reporting": "^1.0.2",
"ape-tasking": "^1.0.0",
"ape-testing": "^1.1.0",
"ape-tmpl": "^1.0.3",
"ape-covering": "^1.0.8",
"ape-releasing": "^1.0.14",
"ape-reporting": "^1.0.8",
"ape-tasking": "^1.0.6",
"ape-testing": "^1.3.1",
"ape-tmpl": "^1.0.7",
"ape-updating": "^1.0.1",
"coz": "^1.3.1",
"injectmock": "^1.0.4"
"coz": "^3.0.1",
"injectmock": "^1.1.2"
}
}

0 comments on commit 8473283

Please sign in to comment.