@decaf-ts/for-nest 0.4.4 → 0.6.0
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 +1 -1
- package/lib/cjs/overrides/index.cjs +1 -0
- package/lib/cjs/overrides/index.js.map +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/overrides/index.js +1 -0
- package/lib/esm/overrides/index.js.map +1 -1
- package/lib/types/index.d.ts +1 -1
- package/lib/types/overrides/index.d.ts +1 -0
- package/package.json +20 -8
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.
|
|
60
|
+
exports.VERSION = "0.5.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);
|
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
require("./overrides.cjs");
|
|
17
18
|
__exportStar(require("./Adapter.cjs"), exports);
|
|
18
19
|
__exportStar(require("./constants.cjs"), exports);
|
|
19
20
|
__exportStar(require("./decoration.cjs"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/overrides/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA0B;AAC1B,kDAA4B;AAC5B,mDAA6B;AAC7B,kDAA4B;AAC5B,+DAAyC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/overrides/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2BAAqB;AAErB,gDAA0B;AAC1B,kDAA4B;AAC5B,mDAA6B;AAC7B,kDAA4B;AAC5B,+DAAyC"}
|
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.
|
|
43
|
+
export const VERSION = "0.5.0";
|
|
44
44
|
export const PACKAGE_NAME = "@decaf-ts/for-nest";
|
|
45
45
|
Metadata.allowReregistration(true);
|
|
46
46
|
Metadata.registerLibrary(PACKAGE_NAME, VERSION);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/overrides/index.ts"],"names":[],"mappings":"AAAA,6BAA0B;AAC1B,+BAA4B;AAC5B,gCAA6B;AAC7B,+BAA4B;AAC5B,4CAAyC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/overrides/index.ts"],"names":[],"mappings":"AAAA,wBAAqB;AAErB,6BAA0B;AAC1B,+BAA4B;AAC5B,gCAA6B;AAC7B,+BAA4B;AAC5B,4CAAyC"}
|
package/lib/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,32 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/for-nest",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "NestJS decaf integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
"import": {
|
|
9
|
+
"types": "./lib/types/index.d.mts",
|
|
10
|
+
"default": "./lib/esm/index.js"
|
|
11
|
+
},
|
|
12
|
+
"require": {
|
|
13
|
+
"types": "./lib/types/index.d.cts",
|
|
14
|
+
"default": "./lib/cjs/index.cjs"
|
|
15
|
+
},
|
|
11
16
|
"default": "./lib/esm/index.js"
|
|
12
17
|
},
|
|
13
18
|
"./ram": {
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
19
|
+
"import": {
|
|
20
|
+
"types": "./lib/types/ram/index.d.mts",
|
|
21
|
+
"default": "./lib/esm/ram/index.js"
|
|
22
|
+
},
|
|
23
|
+
"require": {
|
|
24
|
+
"types": "./lib/types/ram/index.d.cts",
|
|
25
|
+
"default": "./lib/cjs/ram/index.cjs"
|
|
26
|
+
},
|
|
17
27
|
"default": "./lib/esm/ram/index.js"
|
|
18
28
|
}
|
|
19
29
|
},
|
|
20
30
|
"bin": {
|
|
21
31
|
"for-nest": "lib/cjs/bin/cli.cjs"
|
|
22
32
|
},
|
|
23
|
-
"types": "./lib/types/index.d.
|
|
33
|
+
"types": "./lib/types/index.d.mts",
|
|
24
34
|
"main": "./lib/cjs/index.cjs",
|
|
25
35
|
"module": "./lib/esm/index.js",
|
|
26
36
|
"sideEffects": [
|
|
27
37
|
"./lib/esm/decoration.js",
|
|
38
|
+
"./lib/esm/overrides/index.js",
|
|
28
39
|
"./lib/esm/overrides/overrides.js",
|
|
29
40
|
"./lib/cjs/decoration.cjs",
|
|
41
|
+
"./lib/cjs/overrides/index.cjs",
|
|
30
42
|
"./lib/cjs/overrides/overrides.cjs"
|
|
31
43
|
],
|
|
32
44
|
"scripts": {
|