@event-nest/core 1.0.5 → 1.0.6

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 +9 -0
  2. package/package.json +2 -3
package/README.md CHANGED
@@ -19,6 +19,15 @@ It would also probably help to make some distinctions about what Event Nest is n
19
19
  * It is not a library for establishing event-based communication between services.
20
20
  * **Although the code is covered by tests, the library is not widely tested in production. Use it at your own risk.**
21
21
 
22
+ ## Table of contents
23
+ - [Why?](#why)
24
+ - [Getting Started](#getting-started)
25
+ - [Concepts](#concepts)
26
+ - [Event](#event)
27
+ - [Aggregate Root](#aggregate-root)
28
+ - [Domain Event Subscription](#domain-event-subscription)
29
+
30
+
22
31
  ## Why?
23
32
  Implementing event sourcing in an application can be challenging, particularly when combined with CQRS and DDD.
24
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@event-nest/core",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "license": "MIT",
5
5
  "author": "Nick Tsitlakidis",
6
6
  "description": "Event sourcing module for NestJS. It provides a set of decorators and classes to build an application based on event sourcing.",
@@ -28,6 +28,5 @@
28
28
  "dependencies": {
29
29
  "class-transformer": "^0.5.1"
30
30
  },
31
- "main": "./src/index.js",
32
- "types": "./src/index.d.ts"
31
+ "main": "./src/index.js"
33
32
  }