@nestjstools/messaging 4.0.1 → 4.1.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/README.md +155 -72
- package/lib/config.d.ts +32 -0
- package/lib/config.js.map +1 -1
- package/lib/dependency-injection/service.d.ts +2 -1
- package/lib/dependency-injection/service.js +1 -0
- package/lib/dependency-injection/service.js.map +1 -1
- package/lib/messaging.module.d.ts +5 -2
- package/lib/messaging.module.js +17 -2
- package/lib/messaging.module.js.map +1 -1
- package/lib/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +16 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestjstools/messaging",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Simplifies asynchronous and synchronous message handling with support for buses, handlers, channels, and consumers. Build scalable, decoupled applications with ease and reliability.",
|
|
5
5
|
"author": "Sebastian Iwanczyszyn",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,12 +8,14 @@
|
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
11
|
+
"homepage": "https://docs.nestjstools.com/messaging",
|
|
11
12
|
"bugs": {
|
|
12
13
|
"url": "https://github.com/nestjstools/messaging/issues"
|
|
13
14
|
},
|
|
14
15
|
"repository": {
|
|
15
16
|
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/nestjstools/messaging"
|
|
17
|
+
"url": "git+https://github.com/nestjstools/messaging",
|
|
18
|
+
"directory": "packages/messaging"
|
|
17
19
|
},
|
|
18
20
|
"files": [
|
|
19
21
|
"lib",
|
|
@@ -33,19 +35,19 @@
|
|
|
33
35
|
"microservices architecture"
|
|
34
36
|
],
|
|
35
37
|
"scripts": {
|
|
36
|
-
"build": "
|
|
37
|
-
"prettier:fix": "
|
|
38
|
-
"prettier": "
|
|
39
|
-
"start": "
|
|
40
|
-
"start:dev": "
|
|
41
|
-
"start:debug": "
|
|
38
|
+
"build": "nest build",
|
|
39
|
+
"prettier:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
40
|
+
"prettier": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
41
|
+
"start": "nest start",
|
|
42
|
+
"start:dev": "nest start --watch",
|
|
43
|
+
"start:debug": "nest start --debug --watch",
|
|
42
44
|
"start:prod": "node dist/main",
|
|
43
|
-
"lint": "
|
|
45
|
+
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
44
46
|
"test": "npm run test:e2e && npm run test:unit",
|
|
45
|
-
"test:watch": "
|
|
46
|
-
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register
|
|
47
|
-
"test:e2e": "
|
|
48
|
-
"test:unit": "
|
|
47
|
+
"test:watch": "jest --watch",
|
|
48
|
+
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register jest --runInBand",
|
|
49
|
+
"test:e2e": "jest --config ./test/jest-e2e.json",
|
|
50
|
+
"test:unit": "jest --config ./test/jest-unit.json"
|
|
49
51
|
},
|
|
50
52
|
"dependencies": {
|
|
51
53
|
"class-transformer": "^0.5.1"
|
|
@@ -95,7 +97,7 @@
|
|
|
95
97
|
"json",
|
|
96
98
|
"ts"
|
|
97
99
|
],
|
|
98
|
-
"rootDir": "
|
|
100
|
+
"rootDir": "lib",
|
|
99
101
|
"testRegex": ".*\\.spec\\.ts$",
|
|
100
102
|
"transform": {
|
|
101
103
|
"^.+\\.(t|j)s$": "ts-jest"
|