@decaf-ts/for-nest 0.4.2 → 0.4.4

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.4.1";
60
+ exports.VERSION = "0.4.3";
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.4.1";
43
+ export const VERSION = "0.4.3";
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.4.1";
42
+ export declare const VERSION = "0.4.3";
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.2",
3
+ "version": "0.4.4",
4
4
  "description": "NestJS decaf integration",
5
5
  "type": "module",
6
6
  "exports": {
@@ -23,7 +23,12 @@
23
23
  "types": "./lib/types/index.d.ts",
24
24
  "main": "./lib/cjs/index.cjs",
25
25
  "module": "./lib/esm/index.js",
26
- "sideEffects": false,
26
+ "sideEffects": [
27
+ "./lib/esm/decoration.js",
28
+ "./lib/esm/overrides/overrides.js",
29
+ "./lib/cjs/decoration.cjs",
30
+ "./lib/cjs/overrides/overrides.cjs"
31
+ ],
27
32
  "scripts": {
28
33
  "do-install": "NPM_TOKEN=$(cat .npmtoken) npm install",
29
34
  "update-dependencies": "PREFIX=\"decaf-ts\"; npm ls | grep \"$PREFIX\" | awk -F/ '{print $NF}' | sed 's/@.*//' | xargs -I package npm update @\"$PREFIX\"/package",