@file-services/node
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -7,2 +7,3 @@ import { IBaseFileSystem } from '@file-services/types'; | ||
export declare function createBaseNodeFs(options?: ICreateNodeFsOptions): IBaseFileSystem; | ||
export declare const nodeFs: IBaseFileSystem; | ||
//# sourceMappingURL=node-fs.d.ts.map |
@@ -35,2 +35,3 @@ "use strict"; | ||
exports.createBaseNodeFs = createBaseNodeFs; | ||
exports.nodeFs = createBaseNodeFs(); | ||
//# sourceMappingURL=node-fs.js.map |
@@ -83,4 +83,4 @@ "use strict"; | ||
} | ||
this.fsWatchers = new Map(); | ||
this.watchedPaths = new Set(); | ||
this.fsWatchers.clear(); | ||
this.watchedPaths.clear(); | ||
} | ||
@@ -103,3 +103,3 @@ /** | ||
removeAllListeners() { | ||
this.listeners = new Set(); | ||
this.listeners.clear(); | ||
} | ||
@@ -106,0 +106,0 @@ // private helpers |
{ | ||
"name": "@file-services/node", | ||
"description": "Node.js file system implementation.", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"main": "cjs/index.js", | ||
@@ -16,7 +16,7 @@ "types": "cjs/index.d.ts", | ||
"dependencies": { | ||
"@file-services/types": "^0.1.0", | ||
"@file-services/types": "^0.1.1", | ||
"proper-fs": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"@file-services/test-kit": "^0.1.0" | ||
"@file-services/test-kit": "^0.1.1" | ||
}, | ||
@@ -31,7 +31,8 @@ "files": [ | ||
"license": "MIT", | ||
"repository": "git@github.com:wixplosives/file-services.git", | ||
"repository": "https://github.com/wixplosives/file-services/tree/master/packages/node", | ||
"homepage": "https://github.com/wixplosives/file-services", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "6acdbcaf73f0030c649f75211f4c1fb6e8322f09" | ||
"gitHead": "6d9893c8b3cc62ba96906ed6d4eda7a8d44d3bf7" | ||
} |
@@ -38,1 +38,3 @@ import path from 'path' | ||
} | ||
export const nodeFs: IBaseFileSystem = createBaseNodeFs() |
@@ -133,4 +133,4 @@ import { join } from 'path' | ||
} | ||
this.fsWatchers = new Map() | ||
this.watchedPaths = new Set() | ||
this.fsWatchers.clear() | ||
this.watchedPaths.clear() | ||
} | ||
@@ -156,3 +156,3 @@ | ||
public removeAllListeners(): void { | ||
this.listeners = new Set() | ||
this.listeners.clear() | ||
} | ||
@@ -159,0 +159,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
29017
515
1
1540
Updated@file-services/types@^0.1.1