prebundle 1.4.1 → 1.5.0
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/compiled/fast-glob/index.js +190 -190
- package/compiled/fs-extra/index.d.ts +3 -2
- package/compiled/fs-extra/index.js +180 -157
- package/compiled/fs-extra/package.json +1 -1
- package/compiled/rslog/index.d.ts +4 -3
- package/compiled/rslog/index.js +145 -183
- package/compiled/rslog/package.json +1 -1
- package/dist/index.js +15 -4
- package/package.json +11 -11
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import * as fs from 'fs';
|
|
3
|
-
import { readFile as readFile$2, readFileSync as readFileSync$1, writeFile as writeFile$2, writeFileSync as writeFileSync$1
|
|
3
|
+
import { PathLike, readFile as readFile$2, readFileSync as readFileSync$1, writeFile as writeFile$2, writeFileSync as writeFileSync$1 } from 'fs';
|
|
4
4
|
export * from 'fs';
|
|
5
5
|
import { Url } from 'url';
|
|
6
6
|
|
|
@@ -1060,4 +1060,5 @@ interface MoveOptions {
|
|
|
1060
1060
|
|
|
1061
1061
|
type JsonOutputOptions = fs.WriteFileOptions & StringifyOptions;
|
|
1062
1062
|
|
|
1063
|
-
export {
|
|
1063
|
+
export { access, appendFile, chmod, chown, close, copy, copyFile, copySync, createFile, createFileSync, createLink, createLinkSync, createSymlink, createSymlinkSync, emptyDir, emptyDirSync, emptydir, emptydirSync, ensureDir, ensureDirSync, ensureFile, ensureFileSync, ensureLink, ensureLinkSync, ensureSymlink, ensureSymlinkSync, exists, fchmod, fchown, fdatasync, fstat, fsync, ftruncate, futimes, lchmod, lchown, link, lstat, mkdir, mkdirp, mkdirpSync, mkdirs, mkdirsSync, mkdtemp, move, moveSync, open, opendir, outputFile, outputFileSync, outputJSON, outputJSONSync, outputJson, outputJsonSync, pathExists, pathExistsSync, read, readFile, readJSON, readJSONSync, readJson, readJsonSync, readdir, readlink, readv, realpath, remove, removeSync, rename, rm, rmdir, stat, symlink, truncate, unlink, utimes, write, writeFile, writeJSON, writeJSONSync, writeJson, writeJsonSync, writev };
|
|
1064
|
+
export type { CopyFilterAsync, CopyFilterSync, CopyOptions, CopyOptionsSync, EnsureDirOptions, JsonOutputOptions, JFReadOptions as JsonReadOptions, JFWriteOptions as JsonWriteOptions, MoveOptions, NoParamCallbackWithUndefined, SymlinkType };
|