squareboat / nest-storage

A multi-disk multi-driver filesystem manager for NestJS. 💾
https://squareboat.com/open-source/nestjs-boilerplate/storage
MIT License
100 stars 17 forks source link

Remove two non-used source files #8

Open micalevisk opened 2 years ago

micalevisk commented 2 years ago

As of now, only the following files are exposed:

https://github.com/squareboat/nest-storage/blob/add9803f5a2b56f9fe20f0de540361bcb1425052/lib/index.ts#L1-L4

while the source has theses:

.
├── lib
│   ├── constants.ts
│   ├── driverManager.ts
│   ├── drivers
│   │   ├── index.ts
│   │   ├── local.ts
│   │   └── s3Storage.ts
│   ├── helpers
│   │   ├── extensions.ts
│   │   └── index.ts
│   ├── index.ts
│   ├── interfaces
│   │   ├── fileOptions.ts
│   │   ├── index.ts
│   │   ├── storageDriver.ts
│   │   └── storageOptions.ts
│   ├── module.ts
│   ├── provider.map.ts
│   ├── service.ts
│   ├── storage.module.ts   <<<<<<<<<<<<<
│   ├── storage.service.ts  <<<<<<<<<<<<<
│   └── storage.ts

To confirm that those two storage.* files aren't used anywhere:

image

image

vinayak25 commented 2 years ago

Thanks for reporting this, will be removed in next release.