@reliverse/relifso 1.1.1 → 1.1.2
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/bin/impl/subindex.d.ts +1 -1
- package/bin/impl/subindex.js +89 -1
- package/package.json +1 -1
package/bin/impl/subindex.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export type * from "../types.js";
|
|
2
2
|
export type { CopyOptions, CopyOptionsSync, EnsureDirOptions, SymlinkType, MoveOptions, JsonOutputOptions, } from "fs-extra";
|
|
3
3
|
export * from "./fs/index.js";
|
|
4
|
-
export { mkdirSync } from "./fs/index.js";
|
|
4
|
+
export { access, appendFile, chmod, chown, close, copyFile, cp, createReadStream, createWriteStream, fchmod, fchown, fdatasync, fstat, ftruncate, futimes, lchmod, lchown, link, lstat, lutimes, mkdir, mkdtemp, open, openAsBlob, opendir, read, readFile, readv, readdir, realpath, rename, rm, rmdir, stat, statfs, symlink, truncate, unlink, unwatchFile, utimes, watch, watchFile, write, writev, accessSync, appendFileSync, chmodSync, chownSync, closeSync, copyFileSync, cpSync, existsSync, fchmodSync, fchownSync, fdatasyncSync, fstatSync, fsync, fsyncSync, ftruncateSync, futimesSync, lchmodSync, lchownSync, linkSync, lstatSync, lutimesSync, mkdirSync, mkdtempSync, openSync, opendirSync, readSync, readFileSync, readlinkSync, readvSync, readdirSync, realpathSync, renameSync, rmSync, rmdirSync, statSync, statfsSync, symlinkSync, truncateSync, unlinkSync, utimesSync, writeFileSync, writeSync, writevSync } from "./fs/index.js";
|
|
5
5
|
export { default as vacuum } from "./external/vacuum.js";
|
|
6
6
|
export { copy, copySync } from "./lib/copy/index.js";
|
|
7
7
|
export { emptyDir, emptyDirSync } from "./lib/empty/index.js";
|
package/bin/impl/subindex.js
CHANGED
|
@@ -1,5 +1,93 @@
|
|
|
1
1
|
export * from "./fs/index.js";
|
|
2
|
-
export {
|
|
2
|
+
export {
|
|
3
|
+
access,
|
|
4
|
+
appendFile,
|
|
5
|
+
chmod,
|
|
6
|
+
chown,
|
|
7
|
+
close,
|
|
8
|
+
copyFile,
|
|
9
|
+
cp,
|
|
10
|
+
createReadStream,
|
|
11
|
+
createWriteStream,
|
|
12
|
+
fchmod,
|
|
13
|
+
fchown,
|
|
14
|
+
fdatasync,
|
|
15
|
+
fstat,
|
|
16
|
+
ftruncate,
|
|
17
|
+
futimes,
|
|
18
|
+
lchmod,
|
|
19
|
+
lchown,
|
|
20
|
+
link,
|
|
21
|
+
lstat,
|
|
22
|
+
lutimes,
|
|
23
|
+
mkdir,
|
|
24
|
+
mkdtemp,
|
|
25
|
+
open,
|
|
26
|
+
openAsBlob,
|
|
27
|
+
opendir,
|
|
28
|
+
read,
|
|
29
|
+
readFile,
|
|
30
|
+
readv,
|
|
31
|
+
readdir,
|
|
32
|
+
realpath,
|
|
33
|
+
rename,
|
|
34
|
+
rm,
|
|
35
|
+
rmdir,
|
|
36
|
+
stat,
|
|
37
|
+
statfs,
|
|
38
|
+
symlink,
|
|
39
|
+
truncate,
|
|
40
|
+
unlink,
|
|
41
|
+
unwatchFile,
|
|
42
|
+
utimes,
|
|
43
|
+
watch,
|
|
44
|
+
watchFile,
|
|
45
|
+
write,
|
|
46
|
+
writev,
|
|
47
|
+
accessSync,
|
|
48
|
+
appendFileSync,
|
|
49
|
+
chmodSync,
|
|
50
|
+
chownSync,
|
|
51
|
+
closeSync,
|
|
52
|
+
copyFileSync,
|
|
53
|
+
cpSync,
|
|
54
|
+
existsSync,
|
|
55
|
+
fchmodSync,
|
|
56
|
+
fchownSync,
|
|
57
|
+
fdatasyncSync,
|
|
58
|
+
fstatSync,
|
|
59
|
+
fsync,
|
|
60
|
+
fsyncSync,
|
|
61
|
+
ftruncateSync,
|
|
62
|
+
futimesSync,
|
|
63
|
+
lchmodSync,
|
|
64
|
+
lchownSync,
|
|
65
|
+
linkSync,
|
|
66
|
+
lstatSync,
|
|
67
|
+
lutimesSync,
|
|
68
|
+
mkdirSync,
|
|
69
|
+
mkdtempSync,
|
|
70
|
+
openSync,
|
|
71
|
+
opendirSync,
|
|
72
|
+
readSync,
|
|
73
|
+
readFileSync,
|
|
74
|
+
readlinkSync,
|
|
75
|
+
readvSync,
|
|
76
|
+
readdirSync,
|
|
77
|
+
realpathSync,
|
|
78
|
+
renameSync,
|
|
79
|
+
rmSync,
|
|
80
|
+
rmdirSync,
|
|
81
|
+
statSync,
|
|
82
|
+
statfsSync,
|
|
83
|
+
symlinkSync,
|
|
84
|
+
truncateSync,
|
|
85
|
+
unlinkSync,
|
|
86
|
+
utimesSync,
|
|
87
|
+
writeFileSync,
|
|
88
|
+
writeSync,
|
|
89
|
+
writevSync
|
|
90
|
+
} from "./fs/index.js";
|
|
3
91
|
export { default as vacuum } from "./external/vacuum.js";
|
|
4
92
|
export { copy, copySync } from "./lib/copy/index.js";
|
|
5
93
|
export { emptyDir, emptyDirSync } from "./lib/empty/index.js";
|