flowx-control 1.0.5 → 1.0.7

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 (1) hide show
  1. package/package.json +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowx-control",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Production-grade, zero-dependency TypeScript resilience & async flow control library. 100% test coverage. Retry with backoff, Circuit Breaker, Bulkhead, Rate Limiter, Priority Queue, Semaphore, Mutex, Debounce, Throttle, Timeout, Hedge, Poll, Batch, Pipeline — all tree-shakable & composable.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -105,8 +105,8 @@
105
105
  ],
106
106
  "scripts": {
107
107
  "build": "tsup",
108
- "test": "jest --coverage",
109
- "test:ci": "jest --coverage",
108
+ "test": "jest --coverage --forceExit",
109
+ "test:ci": "jest --coverage --forceExit",
110
110
  "lint": "eslint src/ --ext .ts",
111
111
  "typecheck": "tsc --noEmit",
112
112
  "format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",