@stryke/fs
Version:
A package containing various file system utilities that expand the functionality of NodeJs's built-in `fs` module.
28 lines (27 loc) • 770 B
TypeScript
/**
* The fs library used by Storm Software for building NodeJS applications.
*
* @remarks
* A package containing various file system utilities that expand the functionality of NodeJs's `fs` module
*
* @packageDocumentation
*/
export * from "./buffer";
export * from "./chmod-x";
export * from "./command-exists";
export * from "./compress";
export * from "./constants";
export * from "./copy-file";
export * from "./helpers";
export * from "./install";
export * from "./json";
export * from "./list-files";
export * from "./package-fns";
export * from "./read-file";
export * from "./registry";
export * from "./remove-file";
export * from "./semver-fns";
export * from "./toml";
export * from "./tsconfig";
export * from "./write-file";
export * from "./yaml";