@semiont/event-sourcing 0.2.30-build.44 → 0.2.30-build.47

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 +2 -0
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -1,7 +1,9 @@
1
1
  # @semiont/event-sourcing
2
2
 
3
3
  [![Tests](https://github.com/The-AI-Alliance/semiont/actions/workflows/package-tests.yml/badge.svg)](https://github.com/The-AI-Alliance/semiont/actions/workflows/package-tests.yml?query=branch%3Amain+is%3Asuccess+job%3A%22Test+event-sourcing%22)
4
+ [![codecov](https://codecov.io/gh/The-AI-Alliance/semiont/graph/badge.svg?flag=event-sourcing)](https://codecov.io/gh/The-AI-Alliance/semiont?flag=event-sourcing)
4
5
  [![npm version](https://img.shields.io/npm/v/@semiont/event-sourcing.svg)](https://www.npmjs.com/package/@semiont/event-sourcing)
6
+ [![npm downloads](https://img.shields.io/npm/dm/@semiont/event-sourcing.svg)](https://www.npmjs.com/package/@semiont/event-sourcing)
5
7
  [![License](https://img.shields.io/npm/l/@semiont/event-sourcing.svg)](https://github.com/The-AI-Alliance/semiont/blob/main/LICENSE)
6
8
 
7
9
  Event sourcing infrastructure for [Semiont](https://github.com/The-AI-Alliance/semiont) - provides event persistence, pub/sub, and materialized views for building event-driven applications.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semiont/event-sourcing",
3
- "version": "0.2.30-build.44",
3
+ "version": "0.2.30-build.47",
4
4
  "description": "Event sourcing infrastructure for Semiont - EventLog, EventBus, and ViewManager",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -33,7 +33,8 @@
33
33
  "watch": "tsup --watch",
34
34
  "clean": "rm -rf dist *.tsbuildinfo",
35
35
  "test": "vitest run",
36
- "test:watch": "vitest"
36
+ "test:watch": "vitest",
37
+ "test:coverage": "vitest run --coverage"
37
38
  },
38
39
  "keywords": [
39
40
  "event-sourcing",
@@ -47,6 +48,7 @@
47
48
  "author": "Semiont Team",
48
49
  "license": "Apache-2.0",
49
50
  "devDependencies": {
51
+ "@vitest/coverage-v8": "^3.0.0",
50
52
  "tsup": "^8.5.1",
51
53
  "typescript": "^5.6.3",
52
54
  "vitest": "^3.2.4"