mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
feature(bower) philip v1.2.1
This commit is contained in:
parent
198fd8e638
commit
4f14e236cc
6 changed files with 16 additions and 10 deletions
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
|
@ -1,3 +1,9 @@
|
|||
2015.07.19, v1.2.1
|
||||
|
||||
fix:
|
||||
- (philip) _getFiles: to fast callback call
|
||||
|
||||
|
||||
2015.07.18, v1.2.0
|
||||
|
||||
fix:
|
||||
|
|
|
|||
|
|
@ -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>"
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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": {},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue