@poe-platform/safe-js 0.1.2 → 0.1.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/README.md +1 -1
- package/dist/compat/fs-core.d.ts +1 -0
- package/dist/compat/fs-core.js +1 -0
- package/dist/compat/fs-node.d.ts +1 -0
- package/dist/compat/fs-node.js +1 -0
- package/dist/compat/fs.d.ts +1 -0
- package/dist/compat/fs.js +1 -0
- package/dist/safe-js/chunks/{chunk-DC5B3GYM.js → chunk-4HHBSGDR.js} +12 -12
- package/dist/safe-js/chunks/{chunk-DC5B3GYM.js.map → chunk-4HHBSGDR.js.map} +1 -1
- package/dist/safe-js/cli.js +1 -3
- package/dist/safe-js/cli.js.map +1 -1
- package/dist/safe-js/index.js +1 -3
- package/dist/safe-js/index.js.map +1 -1
- package/dist/safe-js/modules/fs-config.d.ts +1 -1
- package/dist/safe-js/modules/fs.d.ts +1 -1
- package/package.json +15 -34
- package/dist/safe-fs/bridge/filesystem.d.ts +0 -88
- package/dist/safe-fs/bridge/index.d.ts +0 -6
- package/dist/safe-fs/bridge/types.d.ts +0 -75
- package/dist/safe-fs/config.d.ts +0 -15
- package/dist/safe-fs/config.node.d.ts +0 -2
- package/dist/safe-fs/contracts/errors.d.ts +0 -50
- package/dist/safe-fs/contracts/filesystem.d.ts +0 -96
- package/dist/safe-fs/contracts/index.d.ts +0 -4
- package/dist/safe-fs/contracts/io.d.ts +0 -8
- package/dist/safe-fs/contracts/path.d.ts +0 -8
- package/dist/safe-fs/contracts/portable-path.d.ts +0 -13
- package/dist/safe-fs/contracts/virtual-path.d.ts +0 -7
- package/dist/safe-fs/core.d.ts +0 -12
- package/dist/safe-fs/fs/memory/index.d.ts +0 -58
- package/dist/safe-fs/fs/mount/comparison.d.ts +0 -19
- package/dist/safe-fs/fs/mount/index.d.ts +0 -44
- package/dist/safe-fs/fs/overlay/index.d.ts +0 -73
- package/dist/safe-fs/fs/readonly/index.d.ts +0 -31
- package/dist/safe-fs/fs/real/index.d.ts +0 -76
- package/dist/safe-fs/fs/s3/filesystem.d.ts +0 -93
- package/dist/safe-fs/fs/s3/http/index.d.ts +0 -2
- package/dist/safe-fs/fs/s3/http/transport.d.ts +0 -3
- package/dist/safe-fs/fs/s3/http/types.d.ts +0 -30
- package/dist/safe-fs/fs/s3/index.d.ts +0 -6
- package/dist/safe-fs/fs/s3/mock.d.ts +0 -48
- package/dist/safe-fs/fs/s3/transport.d.ts +0 -103
- package/dist/safe-fs/fs/webdav/index.d.ts +0 -2
- package/dist/safe-fs/fs/webdav/webdav.d.ts +0 -101
- package/dist/safe-fs/index.d.ts +0 -14
- package/dist/safe-fs/node/filesystem.d.ts +0 -11
- package/dist/safe-fs/node/index.d.ts +0 -2
- package/dist/safe-fs/node-host.d.ts +0 -1
- package/dist/safe-fs/platform/browser.d.ts +0 -12
- package/dist/safe-fs/platform/node.d.ts +0 -13
- package/dist/safe-js/browser/chunks/chunk-QGN6DKT5.js +0 -4335
- package/dist/safe-js/browser/chunks/chunk-QGN6DKT5.js.map +0 -7
- package/dist/safe-js/browser/safe-fs-core.js +0 -67
- package/dist/safe-js/browser/safe-fs-core.js.map +0 -7
- package/dist/safe-js/browser/safe-fs.js +0 -67
- package/dist/safe-js/browser/safe-fs.js.map +0 -7
- package/dist/safe-js/chunks/chunk-2QRYPKQQ.js +0 -4315
- package/dist/safe-js/chunks/chunk-2QRYPKQQ.js.map +0 -7
- package/dist/safe-js/chunks/chunk-7M2SJPSZ.js +0 -2613
- package/dist/safe-js/chunks/chunk-7M2SJPSZ.js.map +0 -7
- package/dist/safe-js/safe-fs-core.js +0 -130
- package/dist/safe-js/safe-fs-core.js.map +0 -7
- package/dist/safe-js/safe-fs-node.js +0 -94
- package/dist/safe-js/safe-fs-node.js.map +0 -7
- package/dist/safe-js/safe-fs.js +0 -94
- package/dist/safe-js/safe-fs.js.map +0 -7
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ACCESS_MODES,
|
|
3
|
-
FsError,
|
|
4
|
-
MemoryFileSystem,
|
|
5
|
-
MountFileSystem,
|
|
6
|
-
OverlayFileSystem,
|
|
7
|
-
ReadOnlyFileSystem,
|
|
8
|
-
WebDavFileSystem,
|
|
9
|
-
assertPathWithin,
|
|
10
|
-
basename,
|
|
11
|
-
collectBytes,
|
|
12
|
-
compareEntries,
|
|
13
|
-
createFsBridge,
|
|
14
|
-
createMemoryFileSystem,
|
|
15
|
-
createMountFileSystem,
|
|
16
|
-
createOverlayFileSystem,
|
|
17
|
-
createReadOnlyFileSystem,
|
|
18
|
-
dirname,
|
|
19
|
-
extname,
|
|
20
|
-
isAbsolutePath,
|
|
21
|
-
isErrnoCode,
|
|
22
|
-
isFsError,
|
|
23
|
-
isPathWithin,
|
|
24
|
-
joinPath,
|
|
25
|
-
normalizePath,
|
|
26
|
-
posixPath,
|
|
27
|
-
readBytes,
|
|
28
|
-
relativePath,
|
|
29
|
-
resolvePath,
|
|
30
|
-
toByteSource,
|
|
31
|
-
toFsError,
|
|
32
|
-
validatePath
|
|
33
|
-
} from "./chunks/chunk-QGN6DKT5.js";
|
|
34
|
-
export {
|
|
35
|
-
ACCESS_MODES,
|
|
36
|
-
FsError,
|
|
37
|
-
MemoryFileSystem,
|
|
38
|
-
MountFileSystem,
|
|
39
|
-
OverlayFileSystem,
|
|
40
|
-
ReadOnlyFileSystem,
|
|
41
|
-
WebDavFileSystem,
|
|
42
|
-
assertPathWithin,
|
|
43
|
-
basename,
|
|
44
|
-
collectBytes,
|
|
45
|
-
compareEntries,
|
|
46
|
-
createFsBridge,
|
|
47
|
-
createMemoryFileSystem,
|
|
48
|
-
createMountFileSystem,
|
|
49
|
-
createOverlayFileSystem,
|
|
50
|
-
createReadOnlyFileSystem,
|
|
51
|
-
dirname,
|
|
52
|
-
extname,
|
|
53
|
-
isAbsolutePath,
|
|
54
|
-
isErrnoCode,
|
|
55
|
-
isFsError,
|
|
56
|
-
isPathWithin,
|
|
57
|
-
joinPath,
|
|
58
|
-
normalizePath,
|
|
59
|
-
posixPath,
|
|
60
|
-
readBytes,
|
|
61
|
-
relativePath,
|
|
62
|
-
resolvePath,
|
|
63
|
-
toByteSource,
|
|
64
|
-
toFsError,
|
|
65
|
-
validatePath
|
|
66
|
-
};
|
|
67
|
-
//# sourceMappingURL=safe-fs-core.js.map
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ACCESS_MODES,
|
|
3
|
-
FsError,
|
|
4
|
-
MemoryFileSystem,
|
|
5
|
-
MountFileSystem,
|
|
6
|
-
OverlayFileSystem,
|
|
7
|
-
ReadOnlyFileSystem,
|
|
8
|
-
WebDavFileSystem,
|
|
9
|
-
assertPathWithin,
|
|
10
|
-
basename,
|
|
11
|
-
collectBytes,
|
|
12
|
-
compareEntries,
|
|
13
|
-
createFsBridge,
|
|
14
|
-
createMemoryFileSystem,
|
|
15
|
-
createMountFileSystem,
|
|
16
|
-
createOverlayFileSystem,
|
|
17
|
-
createReadOnlyFileSystem,
|
|
18
|
-
dirname,
|
|
19
|
-
extname,
|
|
20
|
-
isAbsolutePath,
|
|
21
|
-
isErrnoCode,
|
|
22
|
-
isFsError,
|
|
23
|
-
isPathWithin,
|
|
24
|
-
joinPath,
|
|
25
|
-
normalizePath,
|
|
26
|
-
posixPath,
|
|
27
|
-
readBytes,
|
|
28
|
-
relativePath,
|
|
29
|
-
resolvePath,
|
|
30
|
-
toByteSource,
|
|
31
|
-
toFsError,
|
|
32
|
-
validatePath
|
|
33
|
-
} from "./chunks/chunk-QGN6DKT5.js";
|
|
34
|
-
export {
|
|
35
|
-
ACCESS_MODES,
|
|
36
|
-
FsError,
|
|
37
|
-
MemoryFileSystem,
|
|
38
|
-
MountFileSystem,
|
|
39
|
-
OverlayFileSystem,
|
|
40
|
-
ReadOnlyFileSystem,
|
|
41
|
-
WebDavFileSystem,
|
|
42
|
-
assertPathWithin,
|
|
43
|
-
basename,
|
|
44
|
-
collectBytes,
|
|
45
|
-
compareEntries,
|
|
46
|
-
createFsBridge,
|
|
47
|
-
createMemoryFileSystem,
|
|
48
|
-
createMountFileSystem,
|
|
49
|
-
createOverlayFileSystem,
|
|
50
|
-
createReadOnlyFileSystem,
|
|
51
|
-
dirname,
|
|
52
|
-
extname,
|
|
53
|
-
isAbsolutePath,
|
|
54
|
-
isErrnoCode,
|
|
55
|
-
isFsError,
|
|
56
|
-
isPathWithin,
|
|
57
|
-
joinPath,
|
|
58
|
-
normalizePath,
|
|
59
|
-
posixPath,
|
|
60
|
-
readBytes,
|
|
61
|
-
relativePath,
|
|
62
|
-
resolvePath,
|
|
63
|
-
toByteSource,
|
|
64
|
-
toFsError,
|
|
65
|
-
validatePath
|
|
66
|
-
};
|
|
67
|
-
//# sourceMappingURL=safe-fs.js.map
|