@codylabs/nestjs-common 0.0.1 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codylabs/nestjs-common",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Common utilities for NestJS applications",
5
5
  "license": "MIT",
6
6
  "author": "Cody Nguyen",
@@ -17,17 +17,18 @@
17
17
  "express": "^4.21.1",
18
18
  "reflect-metadata": "^0.2.2",
19
19
  "rxjs": "^7.8.1",
20
- "@codylabs/helper-fns": "0.0.1",
21
- "@codylabs/typescript-configs": "0.0.6"
20
+ "@codylabs/helper-fns": "0.0.3",
21
+ "@codylabs/typescript-configs": "0.0.7"
22
22
  },
23
23
  "peerDependencies": {
24
- "@nestjs/common": "^10.0.0",
25
- "@nestjs/core": "^10.0.0"
24
+ "@nestjs/common": "^10.0.0 || ^11.0.0",
25
+ "@nestjs/core": "^10.0.0 || ^11.0.0"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
30
  "scripts": {
31
+ "prebuild": "rimraf dist",
31
32
  "build": "tsc -p tsconfig.build.json",
32
33
  "clean": "rm -rf .turbo node_modules dist",
33
34
  "test": "jest --passWithNoTests",