@decaf-ts/for-nest 0.4.0 → 0.4.1

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.
package/lib/cjs/index.cjs CHANGED
@@ -57,7 +57,7 @@ __exportStar(require("./events-module/index.cjs"), exports);
57
57
  * @constant
58
58
  * @type {string}
59
59
  */
60
- exports.VERSION = "0.3.15";
60
+ exports.VERSION = "0.4.0";
61
61
  exports.PACKAGE_NAME = "@decaf-ts/for-nest";
62
62
  decoration_1.Metadata.allowReregistration(true);
63
63
  decoration_1.Metadata.registerLibrary(exports.PACKAGE_NAME, exports.VERSION);
package/lib/esm/index.js CHANGED
@@ -40,7 +40,7 @@ export * from "./events-module/index.js";
40
40
  * @constant
41
41
  * @type {string}
42
42
  */
43
- export const VERSION = "0.3.15";
43
+ export const VERSION = "0.4.0";
44
44
  export const PACKAGE_NAME = "@decaf-ts/for-nest";
45
45
  Metadata.allowReregistration(true);
46
46
  Metadata.registerLibrary(PACKAGE_NAME, VERSION);
@@ -39,5 +39,5 @@ export * from "./events-module";
39
39
  * @constant
40
40
  * @type {string}
41
41
  */
42
- export declare const VERSION = "0.3.15";
42
+ export declare const VERSION = "0.4.0";
43
43
  export declare const PACKAGE_NAME = "@decaf-ts/for-nest";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/for-nest",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "NestJS decaf integration",
5
5
  "type": "module",
6
6
  "exports": {
@@ -33,8 +33,8 @@
33
33
  "flash-forward": "npx npm-check-updates -u && npm run do-install",
34
34
  "reset": "rm -rf * && git checkout . && git pull && npm run do-install",
35
35
  "extract:api": "node ./lib/bin/cli.cjs export-api --input ./lib/app.module.js --output ./ --fileName example-api --title \"Example Swagger API\" --description \"Includes the full Api definition\"",
36
- "build": "npx build-scripts --dev",
37
- "build:prod": "npx build-scripts --prod",
36
+ "build": "npx decaf build --dev",
37
+ "build:prod": "npx decaf build --prod",
38
38
  "test": "jest --runInBand --coverage --detectOpenHandles",
39
39
  "test:unit": "jest --testPathPatterns=\"/tests/unit\" --passWithNoTests --detectOpenHandles",
40
40
  "test:integration": "jest --testPathPatterns=\"/tests/(integration)\" --passWithNoTests --detectOpenHandles",
@@ -49,7 +49,7 @@
49
49
  "clean-publish": "npx clean-publish",
50
50
  "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/",
51
51
  "uml": "cd workdocs/uml && for FILE in ./*.puml; do docker run --rm -v $(pwd):/work -w /work miy4/plantuml -DPLANTUML_LIMIT_SIZE=8192 -tpng $FILE; done && cd ../.. && cp -fr workdocs/uml/*.png workdocs/resources/",
52
- "docs": "npx rimraf ./docs && mkdir docs && npx build-scripts --docs",
52
+ "docs": "npx rimraf ./docs && mkdir docs && npx decaf build --docs",
53
53
  "publish-docs": "docker run -it --rm --user $(id -u):$(id -g) -v \"$(pwd)/workdocs/confluence:/content\" -e ATLASSIAN_API_TOKEN=$(cat .confluence-token) ghcr.io/markdown-confluence/publish:latest",
54
54
  "docker:login": "docker login ghcr.io -u $(cat .dockeruser) -p $(cat .dockertoken)",
55
55
  "docker:build": "npm run docker:build-base",