From c21c896bdc4f600faae0e08a24ac9d41705bf19a Mon Sep 17 00:00:00 2001 From: ostrojs Date: Thu, 18 Nov 2021 19:20:54 +0530 Subject: [PATCH] random file name bug fixes --- filesystem.js | 2 +- filesystemAdapter.js | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/filesystem.js b/filesystem.js index 2cce0e8..79a43f5 100644 --- a/filesystem.js +++ b/filesystem.js @@ -2,7 +2,7 @@ const FilesystemContract = require('@ostro/contracts/filesystem/filesystem') const fs = require('fs-extra') const Finder = require('filehound') const path = require('path') -const FileNotFoundException = require('./FileNotFoundException') +const FileNotFoundException = require('./fileNotFoundException') const FileDeleteException = require('./fileDeleteException') const FileUploadException = require('./fileUploadException') const DirectoryCreateException = require('./directoryCreateException') diff --git a/filesystemAdapter.js b/filesystemAdapter.js index d592225..2dbacbe 100644 --- a/filesystemAdapter.js +++ b/filesystemAdapter.js @@ -1,5 +1,5 @@ const path = require('path') -const FileNotFoundException = require('./FileNotFoundException') +const FileNotFoundException = require('./fileNotFoundException') const FileDeleteException = require('./fileDeleteException') const FileUploadException = require('./fileUploadException') const DirectoryCreateException = require('./directoryCreateException') diff --git a/package.json b/package.json index ef4674e..9c6eec3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ostro/filesystem", - "version": "0.0.0-alpha.1", + "version": "0.0.0-alpha.3", "description": "filesystem module for OstroJS", "main": "filesystemManager.js", "scripts": {