@zenfs/core 1.6.2 → 1.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/lib.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/dist/lib.js ADDED
@@ -0,0 +1,2 @@
1
+ export {};
2
+ /* eslint-disable @typescript-eslint/no-empty-object-type */
@@ -38,4 +38,3 @@ export interface AsyncMixin {
38
38
  *
39
39
  */
40
40
  export declare function Async<const T extends typeof FileSystem>(FS: T): Mixin<T, AsyncMixin>;
41
- export declare function asyncPatch<T extends typeof FileSystem>(fs: Mixin<T, AsyncMixin>): void;
@@ -234,4 +234,3 @@ export function Async(FS) {
234
234
  }
235
235
  return AsyncFS;
236
236
  }
237
- export function asyncPatch(fs) { }
@@ -1 +1,5 @@
1
+ declare global {
2
+ interface AsyncIterator<T, TReturn, TNext> extends AsyncDisposable {
3
+ }
4
+ }
1
5
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenfs/core",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "A filesystem, anywhere",
5
5
  "funding": {
6
6
  "type": "individual",
@@ -58,8 +58,7 @@
58
58
  "build": "tsc -p tsconfig.json",
59
59
  "build:docs": "typedoc",
60
60
  "dev": "npm run build -- --watch",
61
- "prepublishOnly": "npm run build",
62
- "postinstall": "patch-package"
61
+ "prepublishOnly": "npm run build"
63
62
  },
64
63
  "lint-staged": {
65
64
  "*": [
@@ -72,8 +71,7 @@
72
71
  "buffer": "^6.0.3",
73
72
  "eventemitter3": "^5.0.1",
74
73
  "readable-stream": "^4.5.2",
75
- "utilium": "^1.1.1",
76
- "patch-package": "^8.0.0"
74
+ "utilium": "^1.1.1"
77
75
  },
78
76
  "optionalDependencies": {
79
77
  "minimatch": "^9.0.3"