Compare commits

..

No commits in common. "21b3870a7d61820ecc61c09007058424baee7504" and "493a2350652d65abac5701e747c25c009466f01a" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "@push.rocks/smartfile", "name": "@push.rocks/smartfile",
"private": false, "private": false,
"version": "11.0.14", "version": "11.0.13",
"description": "provides a robust suite of tools for managing files in Node.js using TypeScript.", "description": "provides a robust suite of tools for managing files in Node.js using TypeScript.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartfile', name: '@push.rocks/smartfile',
version: '11.0.14', version: '11.0.13',
description: 'provides a robust suite of tools for managing files in Node.js using TypeScript.' description: 'provides a robust suite of tools for managing files in Node.js using TypeScript.'
} }

View File

@ -447,8 +447,8 @@ export const waitForFileToBeReady = (filePathArg: string): Promise<void> => {
* @param fileBaseArg * @param fileBaseArg
*/ */
export let toFs = async ( export let toFs = async (
fileContentArg: string | Buffer | SmartFile | StreamFile,
filePathArg: string, filePathArg: string,
fileContentArg: string | Buffer | SmartFile | StreamFile,
optionsArg: { optionsArg: {
respectRelative?: boolean; respectRelative?: boolean;
} = {} } = {}