basic-ftp
Advanced tools
Comparing version 3.5.0 to 3.6.0
# Changelog | ||
## 3.6.0 | ||
- Added: Make parseList public API. (#75, @xnerhu) | ||
- Changed: Update Typescript 3.5.1 | ||
## 3.5.0 | ||
@@ -4,0 +9,0 @@ |
@@ -12,2 +12,6 @@ export declare enum FileType { | ||
} | ||
/** | ||
* Describes a file, directory or symbolic link. Note that FTP file listings are not standardized. It depends | ||
* on the operating system of the FTP server how complete the information is. | ||
*/ | ||
export declare class FileInfo { | ||
@@ -14,0 +18,0 @@ static Permission: { |
@@ -10,2 +10,6 @@ "use strict"; | ||
})(FileType = exports.FileType || (exports.FileType = {})); | ||
/** | ||
* Describes a file, directory or symbolic link. Note that FTP file listings are not standardized. It depends | ||
* on the operating system of the FTP server how complete the information is. | ||
*/ | ||
class FileInfo { | ||
@@ -12,0 +16,0 @@ constructor(name) { |
@@ -7,1 +7,2 @@ /** | ||
export * from "./FileInfo"; | ||
export * from "./parseList"; |
@@ -12,1 +12,2 @@ "use strict"; | ||
__export(require("./FileInfo")); | ||
__export(require("./parseList")); |
{ | ||
"name": "basic-ftp", | ||
"version": "3.5.0", | ||
"version": "3.6.0", | ||
"description": "FTP client for Node.js, supports explicit FTPS over TLS, IPv6, Async/Await, and Typescript.", | ||
@@ -39,8 +39,9 @@ "main": "dist/index", | ||
"devDependencies": { | ||
"@types/node": "11.13.5", | ||
"mocha": "6.0.2", | ||
"@types/node": "12.0.4", | ||
"mocha": "6.1.4", | ||
"rimraf": "2.6.3", | ||
"tslint": "5.16.0", | ||
"typescript": "3.4.4" | ||
"tslint": "5.17.0", | ||
"typescript": "3.5.1", | ||
"js-yaml": ">=3.13.1" | ||
} | ||
} |
@@ -104,3 +104,3 @@ # Basic FTP | ||
List files and directories in the current working directory, or from `path` if specified. Currently, this library only supports Unix- and DOS-style directory listings. | ||
List files and directories in the current working directory, or from `path` if specified. Currently, this library only supports Unix- and DOS-style directory listings. See [FileInfo](src/FileInfo.ts) for more details. | ||
@@ -107,0 +107,0 @@ `lastMod(filename): Promise<Date>` |
107460
2103
6