@autofleet/kafka 0.4.0 → 0.4.2

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 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1225,13 +1225,13 @@ try {
1225
1225
  Run the test suite:
1226
1226
 
1227
1227
  ```bash
1228
- npm test
1228
+ pnpm test
1229
1229
  ```
1230
1230
 
1231
1231
  Run tests with coverage:
1232
1232
 
1233
1233
  ```bash
1234
- npm run coverage
1234
+ pnpm run coverage
1235
1235
  ```
1236
1236
 
1237
1237
  ### Example Test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/kafka",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Internal wrapper for Apache Kafka producer",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/node": "^20.14.11",
42
- "@autofleet/logger": "^4.2.36"
42
+ "@autofleet/logger": "^4.2.38"
43
43
  },
44
44
  "keywords": [
45
45
  "kafka",
@@ -49,7 +49,7 @@
49
49
  "author": "",
50
50
  "license": "Proprietary",
51
51
  "scripts": {
52
- "build": "tsdown",
52
+ "build": "pnpm -w tsdown -W ./packages/kafka",
53
53
  "test": "vitest",
54
54
  "coverage": "vitest --coverage"
55
55
  }