Skip to content

Commit

Permalink
random file name bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrojs committed Nov 18, 2021
1 parent 6d38fc5 commit c21c896
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion filesystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion filesystemAdapter.js
Original file line number Diff line number Diff line change
@@ -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')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit c21c896

Please sign in to comment.