Skip to content

Commit

Permalink
Update version of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
n3n committed May 6, 2020
1 parent 0df02c5 commit 63af8a7
Show file tree
Hide file tree
Showing 3 changed files with 1,636 additions and 1,749 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Google Cloud Storage Module for Nest.js Framework
## Installation

```bash
$ yarn add @aginix/gcloud-storage
$ yarn add @aginix/nestjs-gcloud-storage
```

## Examples
Expand All @@ -16,7 +16,7 @@ If you have bucket domain name you can config `storageBaseUri`.

```typescript
import { Module } from '@nestjs/common';
import { GCloudStorageModule } from '@aginix/gcloud-storage';
import { GCloudStorageModule } from '@aginix/nestjs-gcloud-storage';

@Module({
imports: [
Expand All @@ -33,7 +33,7 @@ export class AppModule {}

```typescript
import { Module } from '@nestjs/common';
import { GCloudStorageModule } from '@aginix/gcloud-storage';
import { GCloudStorageModule } from '@aginix/nestjs-gcloud-storage';
import { ConfigService } from './config.service';
import { ConfigModule } from './config.module';

Expand Down Expand Up @@ -66,7 +66,7 @@ import { FileInterceptor } from '@nestjs/platform-express';
import {
GCloudStorageFileInterceptor,
UploadedFileMetadata,
} from '@aginix/gcloud-storage';
} from '@aginix/nestjs-gcloud-storage';

@Controller()
export class AppController {
Expand Down Expand Up @@ -98,7 +98,7 @@ import { FileInterceptor } from '@nestjs/platform-express';
import {
GCloudStorageFileInterceptor,
UploadedFileMetadata,
} from '@aginix/gcloud-storage';
} from '@aginix/nestjs-gcloud-storage';

@Controller()
export class AppController {
Expand Down
42 changes: 20 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aginix/gcloud-storage",
"version": "1.1.2",
"description": "Google Cloud Storage module for Nest framework (node.js)",
"name": "@aginix/nestjs-gcloud-storage",
"version": "1.1.3",
"description": "Google Cloud Storage module for Nest framework",
"author": {
"name": "Nonpawit Teerachetmongkol",
"email": "nonpawit.tee@aginix.tech"
Expand All @@ -26,31 +26,29 @@
"publish:next": "npm publish --access public --tag next"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"@nestjs/platform-express": "^6.0.0"
"@nestjs/common": "^7.0.9",
"@nestjs/core": "^7.0.9",
"@nestjs/platform-express": "^7.0.9"
},
"dependencies": {
"@google-cloud/storage": "^4.2.0"
"@google-cloud/storage": "^4.7.0"
},
"devDependencies": {
"@nestjs/core": "6.11.11",
"@nestjs/common": "6.11.8",
"@nestjs/testing": "7.0.0",
"@nestjs/platform-express": "7.0.0",
"@nestjs/testing": "6.11.8",
"@types/jest": "24.9.1",
"@types/node": "13.7.4",
"dotenv": "^8.1.0",
"husky": "4.2.3",
"jest": "24.9.0",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"@nestjs/common": "7.0.9",
"@nestjs/core": "7.0.9",
"@nestjs/platform-express": "7.0.9",
"@nestjs/testing": "7.0.9",
"@types/jest": "25.2.1",
"@types/node": "13.13.5",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.2",
"prettier": "2.0.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rimraf": "^3.0.2",
"supertest": "4.0.2",
"ts-jest": "24.3.0",
"tslint": "5.20.1",
"ts-jest": "25.5.0",
"tslint": "6.1.2",
"typescript": "3.8.3"
},
"lint-staged": {
Expand Down
Loading

0 comments on commit 63af8a7

Please sign in to comment.