@helia/unixfs 2.0.0-3f4c6bf → 2.0.0-a0692f9
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/src/index.d.ts +1 -1
- package/dist/src/index.js +1 -1
- package/package.json +3 -3
- package/src/index.ts +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* `@helia/unixfs` is an implementation of a {@link https://github.com/ipfs/specs/blob/main/UNIXFS.md UnixFS filesystem} compatible with {@link https://github.com/ipfs/helia Helia}.
|
|
5
5
|
*
|
|
6
|
-
* See the
|
|
6
|
+
* See the {@link UnixFS UnixFS interface} for all available operations.
|
|
7
7
|
*
|
|
8
8
|
* @example Creating files and directories
|
|
9
9
|
*
|
package/dist/src/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* `@helia/unixfs` is an implementation of a {@link https://github.com/ipfs/specs/blob/main/UNIXFS.md UnixFS filesystem} compatible with {@link https://github.com/ipfs/helia Helia}.
|
|
5
5
|
*
|
|
6
|
-
* See the
|
|
6
|
+
* See the {@link UnixFS UnixFS interface} for all available operations.
|
|
7
7
|
*
|
|
8
8
|
* @example Creating files and directories
|
|
9
9
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helia/unixfs",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-a0692f9",
|
|
4
4
|
"description": "A Helia-compatible wrapper for UnixFS",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/ipfs/helia/tree/main/packages/unixfs#readme",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"release": "aegir release"
|
|
160
160
|
},
|
|
161
161
|
"dependencies": {
|
|
162
|
-
"@helia/interface": "3.0.0-
|
|
162
|
+
"@helia/interface": "3.0.0-a0692f9",
|
|
163
163
|
"@ipld/dag-pb": "^4.0.3",
|
|
164
164
|
"@libp2p/interface": "^1.1.1",
|
|
165
165
|
"@libp2p/logger": "^4.0.4",
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
"uint8arrays": "^5.0.1"
|
|
179
179
|
},
|
|
180
180
|
"devDependencies": {
|
|
181
|
-
"aegir": "^42.1
|
|
181
|
+
"aegir": "^42.0.1",
|
|
182
182
|
"blockstore-core": "^4.3.8",
|
|
183
183
|
"delay": "^6.0.0",
|
|
184
184
|
"interface-blockstore": "^5.2.9",
|
package/src/index.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* `@helia/unixfs` is an implementation of a {@link https://github.com/ipfs/specs/blob/main/UNIXFS.md UnixFS filesystem} compatible with {@link https://github.com/ipfs/helia Helia}.
|
|
5
5
|
*
|
|
6
|
-
* See the
|
|
6
|
+
* See the {@link UnixFS UnixFS interface} for all available operations.
|
|
7
7
|
*
|
|
8
8
|
* @example Creating files and directories
|
|
9
9
|
*
|