@zenfs/core 1.6.3 → 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 +1 -0
- package/dist/lib.js +2 -0
- package/dist/polyfills.d.ts +4 -0
- package/package.json +4 -7
- package/patches/typescript+5.7.2.patch +0 -11
package/dist/lib.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/lib.js
ADDED
package/dist/polyfills.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenfs/core",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.4",
|
|
4
4
|
"description": "A filesystem, anywhere",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "individual",
|
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
"dist",
|
|
22
22
|
"tests",
|
|
23
23
|
"license.md",
|
|
24
|
-
"eslint.shared.js"
|
|
25
|
-
"patches"
|
|
24
|
+
"eslint.shared.js"
|
|
26
25
|
],
|
|
27
26
|
"type": "module",
|
|
28
27
|
"homepage": "https://github.com/zen-fs/core",
|
|
@@ -59,8 +58,7 @@
|
|
|
59
58
|
"build": "tsc -p tsconfig.json",
|
|
60
59
|
"build:docs": "typedoc",
|
|
61
60
|
"dev": "npm run build -- --watch",
|
|
62
|
-
"prepublishOnly": "npm run build"
|
|
63
|
-
"postinstall": "patch-package"
|
|
61
|
+
"prepublishOnly": "npm run build"
|
|
64
62
|
},
|
|
65
63
|
"lint-staged": {
|
|
66
64
|
"*": [
|
|
@@ -73,8 +71,7 @@
|
|
|
73
71
|
"buffer": "^6.0.3",
|
|
74
72
|
"eventemitter3": "^5.0.1",
|
|
75
73
|
"readable-stream": "^4.5.2",
|
|
76
|
-
"utilium": "^1.1.1"
|
|
77
|
-
"patch-package": "^8.0.0"
|
|
74
|
+
"utilium": "^1.1.1"
|
|
78
75
|
},
|
|
79
76
|
"optionalDependencies": {
|
|
80
77
|
"minimatch": "^9.0.3"
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
diff --git a/node_modules/typescript/lib/lib.esnext.disposable.d.ts b/node_modules/typescript/lib/lib.esnext.disposable.d.ts
|
|
2
|
-
index b169d96..2bc15f0 100644
|
|
3
|
-
--- a/node_modules/typescript/lib/lib.esnext.disposable.d.ts
|
|
4
|
-
+++ b/node_modules/typescript/lib/lib.esnext.disposable.d.ts
|
|
5
|
-
@@ -191,3 +191,6 @@ interface IteratorObject<T, TReturn, TNext> extends Disposable {
|
|
6
|
-
|
|
7
|
-
interface AsyncIteratorObject<T, TReturn, TNext> extends AsyncDisposable {
|
|
8
|
-
}
|
|
9
|
-
+
|
|
10
|
-
+interface AsyncIterator<T, TReturn, TNext> extends AsyncDisposable {
|
|
11
|
-
+}
|