@decaf-ts/db-decorators 0.6.13 → 0.6.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -27,7 +27,7 @@ The db-decorators library provides a comprehensive set of TypeScript decorators
27
27
 
28
28
  Documentation available [here](https://decaf-ts.github.io/db-decorators/)
29
29
 
30
- Minimal size: 7.1 KB kb gzipped
30
+ Minimal size: ##PACKAGE_SIZE## kb gzipped
31
31
 
32
32
 
33
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/db-decorators",
3
- "version": "0.6.13",
3
+ "version": "0.6.14",
4
4
  "description": "Agnostic database decorators and repository",
5
5
  "type": "module",
6
6
  "exports": {
@@ -27,7 +27,7 @@
27
27
  "lint": "eslint .",
28
28
  "lint-fix": "eslint --fix .",
29
29
  "prepare-pr": "npm run lint-fix && npm run build:prod && npm run coverage && npm run docs",
30
- "prepare-release": "npm run lint-fix && npm run build:prod && npm run coverage && npm run docs",
30
+ "prepare-release": "npm run lint-fix && npm run build:prod && npm run coverage",
31
31
  "release": "./bin/tag-release.sh",
32
32
  "clean-publish": "npx clean-publish",
33
33
  "drawings": "for FILE in workdocs/drawings/*.drawio; do echo \"converting $FILE to image...\" && docker run --rm -v $(pwd):/data rlespinasse/drawio-export --format png $FILE; done && cp -rf workdocs/drawings/export/* workdocs/resources/",
@@ -81,5 +81,9 @@
81
81
  "@decaf-ts/decorator-validation": "latest",
82
82
  "@decaf-ts/injectable-decorators": "latest",
83
83
  "@decaf-ts/reflection": "latest"
84
+ },
85
+ "dependencies": {
86
+ "better-docs": "^2.7.3",
87
+ "taffydb": "^2.7.3"
84
88
  }
85
89
  }