feature(bower) philip v1.2.1

This commit is contained in:
coderaiser 2015-07-19 10:54:59 -04:00
parent 198fd8e638
commit 4f14e236cc
6 changed files with 16 additions and 10 deletions

View file

@ -30,6 +30,6 @@
"vk-openapi": "~0.0.1",
"domtokenlist-shim": "~1.1.0",
"promise-polyfill": "~2.1.0",
"philip": "~1.2.0"
"philip": "~1.2.1"
}
}

View file

@ -1,6 +1,6 @@
{
"name": "philip",
"version": "1.2.0",
"version": "1.2.1",
"homepage": "https://github.com/coderaiser/domfs-philip",
"authors": [
"coderaiser <mnemonic.enemy@gmail.com>"
@ -26,14 +26,14 @@
"findit": "~1.1.0",
"execon": "~1.2.2"
},
"_release": "1.2.0",
"_release": "1.2.1",
"_resolution": {
"type": "version",
"tag": "v1.2.0",
"commit": "f23a266be8221788974a851c6eed96060dc61f2f"
"tag": "v1.2.1",
"commit": "21c81406c74cfe0bba678c2a5b91bbf628756e5b"
},
"_source": "git://github.com/coderaiser/domfs-philip.git",
"_target": "~1.2.0",
"_target": "~1.2.1",
"_originalSource": "philip",
"_direct": true
}

View file

@ -1,3 +1,9 @@
2015.07.19, v1.2.1
fix:
- (philip) _getFiles: to fast callback call
2015.07.18, v1.2.0
fix:

View file

@ -1,6 +1,6 @@
{
"name": "philip",
"version": "1.2.0",
"version": "1.2.1",
"homepage": "https://github.com/coderaiser/domfs-philip",
"authors": [
"coderaiser <mnemonic.enemy@gmail.com>"

View file

@ -136,7 +136,7 @@
var files = [],
dirs = [];
exec.each(entries, function(entry) {
exec.each(entries, function(entry, callback) {
var finder = findit(entry);
finder.on('directory', function(name) {
@ -148,7 +148,7 @@
});
finder.on('end', function() {
fn(files, dirs);
callback();
});
}, function() {
fn(files, dirs);

View file

@ -1,7 +1,7 @@
{
"name": "philip",
"private": true,
"version": "1.2.0",
"version": "1.2.1",
"description": "Process files and directories in DOM File System",
"main": "lib/philip.js",
"dependencies": {},